[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1501-19.cs
blob68095c11bca3a5eee7fdccbb33094122e22f56e9
1 // CS1501: No overload for method `Call' takes `0' arguments
2 // Line: 8
4 class A<T> where T : CB, IA
6 void Foo (T t)
8 t.Call ();
12 class CB : CA
16 class CA
18 public void Call (int arg)
23 interface IA
25 void Call (bool arg, int arg2);