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:
authorBen Maurer <benm@mono-cvs.ximian.com>2004-03-29 05:18:06 +0400
committerBen Maurer <benm@mono-cvs.ximian.com>2004-03-29 05:18:06 +0400
commit9242312142addccd4fb2f9077f3d6f0e71034780 (patch)
treec26595b6b2abc85a343cc917fa86d9ab1df3dc78 /mcs/errors/cs1023.cs
parentbab8026c40a48eac889b488039e7f92d77794044 (diff)
more test
svn path=/trunk/mcs/; revision=24688
Diffstat (limited to 'mcs/errors/cs1023.cs')
-rw-r--r--mcs/errors/cs1023.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/cs1023.cs b/mcs/errors/cs1023.cs
new file mode 100644
index 00000000000..28891c93e95
--- /dev/null
+++ b/mcs/errors/cs1023.cs
@@ -0,0 +1,11 @@
+// cs1023.cs: an embedded statement cannot be a declaration or a labeled statement.
+// line: 9
+
+class Test
+{
+ static void Main ()
+ {
+ for (int i = 0; i < 1000000; i++)
+ int k = i;
+ }
+} \ No newline at end of file