a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
11 lines
218 B
C#
11 lines
218 B
C#
// CS1552: Array type specifier, [], must appear before parameter name
|
|
// Line: 6
|
|
|
|
class T {
|
|
// To fix: change (string args[]) to (string [] args)
|
|
public static int Main (string args[])
|
|
{
|
|
return 0;
|
|
}
|
|
}
|