[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1061-12.cs
blob0d14a9196116936264d7ddab989211e1b2ae184f
1 // CS1061: Type `U2' does not contain a definition for `Test' and no extension method `Test' of type `U2' could be found. Are you missing an assembly reference?
2 // Line: 20
4 interface I<T>
6 void Foo<U> (U u) where U : T;
9 struct S
11 public void Test ()
16 class Test : I<S>
18 void I<S>.Foo<U2> (U2 u2)
20 u2.Test ();