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:
authorMartin Baulig <martin@novell.com>2004-04-29 04:17:54 +0400
committerMartin Baulig <martin@novell.com>2004-04-29 04:17:54 +0400
commitc98e865c01bcb85b6de6ca8d0dda105828c542c6 (patch)
tree9b527a1690b7cfb1a3479b98a78a5fe50ee17255 /mcs/errors/cs1547.cs
parentccf6641b26d9a568e4d2063f62ecf518e1b61676 (diff)
New tests.
svn path=/trunk/mcs/; revision=26229
Diffstat (limited to 'mcs/errors/cs1547.cs')
-rw-r--r--mcs/errors/cs1547.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/cs1547.cs b/mcs/errors/cs1547.cs
new file mode 100644
index 00000000000..25ec37ba202
--- /dev/null
+++ b/mcs/errors/cs1547.cs
@@ -0,0 +1,11 @@
+// CS1547: Keyword 'void' cannot be used in this context
+// Line: 9
+using System;
+
+class X
+{
+ static void Main ()
+ {
+ void[] a;
+ }
+}