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:
authorMiguel de Icaza <miguel@gnome.org>2002-05-01 21:49:55 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-05-01 21:49:55 +0400
commitbba10f11b90f4277c48da40b5a6fced6d70be8fb (patch)
treeed7a530e25712c181a22adfb4b3e3660c9922d92 /mcs/errors/cs0028.cs
parent2574cb7ae8f68771e1bfd9f9de4e618d4724634e (diff)
(ArrayAccess.DoResolve): Array Access can operate on
non-variables. svn path=/trunk/mcs/; revision=4199
Diffstat (limited to 'mcs/errors/cs0028.cs')
-rwxr-xr-xmcs/errors/cs0028.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mcs/errors/cs0028.cs b/mcs/errors/cs0028.cs
new file mode 100755
index 00000000000..5cbf73f5130
--- /dev/null
+++ b/mcs/errors/cs0028.cs
@@ -0,0 +1,12 @@
+// cs0028: has the wrong signature to be an entry point
+// Line: 8
+
+class T {
+ public static int Main ()
+ {
+ }
+ public static int Main (int foo)
+ {
+ }
+}
+