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>2004-01-09 00:29:09 +0300
committerMiguel de Icaza <miguel@gnome.org>2004-01-09 00:29:09 +0300
commitb994d376d9f282b9a7c8a092f2125ef8790e421b (patch)
treeaf372053083b977f276a415fbc14c147eee566b8 /mcs/errors/cs1585.cs
parentb71c9146ac3c26e03c83a2e4971f7ace5fd3e27c (diff)
Add
svn path=/trunk/mcs/; revision=21856
Diffstat (limited to 'mcs/errors/cs1585.cs')
-rw-r--r--mcs/errors/cs1585.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/cs1585.cs b/mcs/errors/cs1585.cs
new file mode 100644
index 00000000000..2f9ae84eb1f
--- /dev/null
+++ b/mcs/errors/cs1585.cs
@@ -0,0 +1,11 @@
+// cs1585: Modifier `static' should appear before type
+// Line: 7
+using System;
+
+class t
+{
+ public void static Main (string[] args)
+ {
+ Console.WriteLine("Hello");
+ }
+}