2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / gcs0411.cs
blobf317707f1dad7bdd44adcbd1c5bcbf89b1167748
1 // gcs0411.cs: The type arguments for method `Foo' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 15
4 class Test<A>
6 public void Foo<V> (V v, V w)
7 { }
10 class X
12 static void Main ()
14 Test<float> test = new Test<float> ();
15 test.Foo (8, "Hello World");