Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2004-08-04 18:04:42 +0400
committerMarek Safar <marek.safar@gmail.com>2004-08-04 18:04:42 +0400
commit6094dea7afd28e2ce215fbae4fcd40fc6ecf231f (patch)
tree5ed583d0eebeb371999b84a2a4f21eb4afc36fba /mcs/errors/cs1552.cs
parentbabecb6d8bc9a7ba57c56e7cb072a53c5ee393e0 (diff)
2004-08-04 Marek Safar <marek.safar@seznam.cz>
* 62 new error tests. svn path=/trunk/mcs/; revision=31867
Diffstat (limited to 'mcs/errors/cs1552.cs')
-rwxr-xr-xmcs/errors/cs1552.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/mcs/errors/cs1552.cs b/mcs/errors/cs1552.cs
index b64f87bf1c2..5a06d1f4313 100755
--- a/mcs/errors/cs1552.cs
+++ b/mcs/errors/cs1552.cs
@@ -1,11 +1,10 @@
-//
-// cs1552.cs: Array type specified, [] must appear before parameter name
-// Line: 8
+// cs1552.cs: 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;
}
}