In ilasm/tests:
[mcs.git] / errors / gcs0408-2.cs
blob7161e7c105a3836b3fbc0041810ee7cd84f942ef
1 // CS0408: `X<T>' cannot define overload members that may unify for some type parameter substitutions
2 // Line: 9
3 class X<T>
5 void Foo (T[] t)
6 { }
8 void Foo (int[] t)
9 { }
12 class X
14 static void Main ()
15 { }