In ilasm/tests:
[mcs.git] / errors / gcs0408-4.cs
blob85757e5d564bd3d2d3d912a6aec8b5c91d695681
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 { }