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>2003-08-10 23:12:56 +0400
committerMiguel de Icaza <miguel@gnome.org>2003-08-10 23:12:56 +0400
commitbce7bb0c283a55ea1c1ced7f1360375f025e8f9a (patch)
tree7ec28fb79e39448296ca7f1bf4b6041e59cb326a /mcs/errors/cs1026.cs
parent7b07875c676f3e26152d076f24cae09b37ec41a7 (diff)
Add
svn path=/trunk/mcs/; revision=17229
Diffstat (limited to 'mcs/errors/cs1026.cs')
-rw-r--r--mcs/errors/cs1026.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/errors/cs1026.cs b/mcs/errors/cs1026.cs
new file mode 100644
index 00000000000..8980d47dd2d
--- /dev/null
+++ b/mcs/errors/cs1026.cs
@@ -0,0 +1,8 @@
+// cs1026.cs: expecting (
+// Line: 6
+class X{
+ static void Main ()
+ {
+ Console.WriteLine ("Hola"
+ }
+}