1 // CS0121: The call is ambiguous between the following methods or properties: `Foo<int,int>.Test(int)' and `Foo<int,int>.Test(int)'
7 public void Test (T index
)
9 Console
.WriteLine ("Test 1: {0}", index
);
12 public void Test (U index
)
14 Console
.WriteLine ("Test 2: {0}", index
);
22 Foo
<int,int> foo
= new Foo
<int,int> ();