New test included for code coverage.
authorRaja R Harinath <harinath@hurrynot.org>
Fri, 1 Apr 2005 10:30:04 +0000 (10:30 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Fri, 1 Apr 2005 10:30:04 +0000 (10:30 -0000)
svn path=/trunk/mcs/; revision=42456

mcs/errors/cs0136-5.cs [new file with mode: 0644]

diff --git a/mcs/errors/cs0136-5.cs b/mcs/errors/cs0136-5.cs
new file mode 100644 (file)
index 0000000..02104dd
--- /dev/null
@@ -0,0 +1,13 @@
+// cs0136: A local variable named 'i' cannot be declared in this scope because it would give a different meaning to 'i'
+// Line: 9
+class X {
+       void b ()
+       {
+               {
+                       string i;
+               }
+               int i;
+       }
+}
+
+