update
[mono.git] / mcs / errors / gcs0408.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         public void Foo (T t)
6         { }
7
8         public void Foo (int i)
9         { }
10 }
11
12 class X
13 {
14         static void Main ()
15         { }
16 }