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-10-28 19:45:38 +0400
committerMiguel de Icaza <miguel@gnome.org>2004-10-28 19:45:38 +0400
commitf6b088d2ed5038c45fc7c8e735506a0aa8281521 (patch)
tree9ffb84a92d3d7aa8c2e76db4428941ecba05a918 /mcs/errors/cs0104-2.cs
parent1de6747f7726fc3a93115e3c20dfccb22ad3d6ab (diff)
Add another test case, this was a recent regression
svn path=/trunk/mcs/; revision=35401
Diffstat (limited to 'mcs/errors/cs0104-2.cs')
-rw-r--r--mcs/errors/cs0104-2.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/mcs/errors/cs0104-2.cs b/mcs/errors/cs0104-2.cs
new file mode 100644
index 00000000000..2c609f6312d
--- /dev/null
+++ b/mcs/errors/cs0104-2.cs
@@ -0,0 +1,25 @@
+using Gdk;
+using System.Drawing;
+
+public class Plot {
+ void M ()
+ {
+ Graphics g;
+ }
+
+
+ static void Main ()
+ {
+ }
+}
+
+
+namespace Gdk {
+ public class Graphics {
+ }
+}
+
+namespace System.Drawing {
+ public class Graphics {
+ }
+}