2005-07-24 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / gcs0408-3.cs
1 // CS0408: `X<T>' cannot define overload members that may unify for some type parameter substitutions
2 // Line: 9
3 class X<T>
4 {
5         void Foo (T[] t)
6         { }
7
8         void Foo (int[][] t)
9         { }
10 }
11
12 class X
13 {
14         static void Main ()
15         { }
16 }