cleol
[mcs.git] / errors / gcs0411-14.cs
blob565c5a54f1a15b54efbfabc85b41833632e0d7ff
1 // CS0411: The type arguments for method `C.Foo<T>(ref T, ref T)' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 14
4 class C
6 public static void Foo<T> (ref T t1, ref T t2)
10 public static void Main ()
12 string s = "a";
13 object o = null;
14 Foo (ref s, ref o);