2007-10-19 Nagappan A <anagappan@novell.com>
[mono.git] / mcs / errors / gcs0308.cs
index f9b7c900bdfe9f0472f4c11dd848668eb371e433..de8daf16cb95613549e71cf1a658b6623ff842f8 100644 (file)
@@ -1,6 +1,19 @@
-using System;
+// CS0308: The non-generic type `N1.A' cannot be used with the type arguments
+// Line: 11
+namespace N1
+{
+       class A
+       { }
+}
 
-class X
+namespace N3
 {
-       DateTime<int> now;
+       using W = N1.A<int>;
+
+       class X
+       {
+               static void Main ()
+               {
+               }
+       }
 }