Oooops, forgot to add them.
authorMartin Baulig <martin@novell.com>
Mon, 29 Mar 2004 17:12:09 +0000 (17:12 -0000)
committerMartin Baulig <martin@novell.com>
Mon, 29 Mar 2004 17:12:09 +0000 (17:12 -0000)
svn path=/trunk/mcs/; revision=24717

mcs/tests/gen-47-dll.cs [new file with mode: 0644]
mcs/tests/gen-47-exe.cs [new file with mode: 0644]

diff --git a/mcs/tests/gen-47-dll.cs b/mcs/tests/gen-47-dll.cs
new file mode 100644 (file)
index 0000000..234694a
--- /dev/null
@@ -0,0 +1,13 @@
+namespace Foo
+{
+       public class List
+       {
+       }
+}
+
+namespace Bar
+{
+       public class List<T>
+       {
+       }
+}
diff --git a/mcs/tests/gen-47-exe.cs b/mcs/tests/gen-47-exe.cs
new file mode 100644 (file)
index 0000000..0b484e9
--- /dev/null
@@ -0,0 +1,10 @@
+using Foo;
+using Bar;
+
+class X
+{
+       static void Main ()
+       {
+               List<int> list = new List<int> ();
+       }
+}