oops.
[mono.git] / mcs / errors / gcs0408-3.cs
index 4e09ffd6664c3dff4891fd3413f0b143a93498d5..6b7c628d409e8f081435648d6667079c3a87d542 100644 (file)
@@ -1,3 +1,5 @@
+// CS0408: `X<T>' cannot define overload members that may unify for some type parameter substitutions
+// Line: 9
 class X<T>
 {
        void Foo (T[] t)
@@ -6,3 +8,9 @@ class X<T>
        void Foo (int[][] t)
        { }
 }
+
+class X
+{
+       static void Main ()
+       { }
+}