[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0411-18.cs
blobfc9053f86f16ae075c427f67e54aaf5c6324d126
1 // CS0411: The type arguments for method `C.Foo<T>(T)' cannot be inferred from the usage. Try specifying the type arguments explicitly
2 // Line: 10
4 using System;
6 class C
8 static void Main ()
10 Foo (new TypedReference ());
13 static void Foo<T> (T arg)