Flush (work in progress)
[mono.git] / mcs / errors / gcs0455.cs
index 44aefafdc4aec7f3c2e05c5a2a7e6d6ba5f53225..e957adff45d0e65bff6d4caad0103b459477ec70 100644 (file)
@@ -1,6 +1,5 @@
 // CS0455: Type parameter `T' inherits conflicting constraints `Test' and `World'
-// Line: 13
-using System;
+// Line: 11
 
 class Test
 { }
@@ -12,9 +11,3 @@ class Foo<T,U>
        where T : Test, U
        where U : World
 { }
-
-class X
-{
-       static void Main ()
-       { }
-}