[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8189.cs
blob909ec3b4fcf4f5e92292491b88932382ba828257
1 // CS8189: By reference return delegate does not match `C.D()' return type
2 // Line: 15
4 class C
6 delegate ref int D ();
8 static int M ()
10 return 1;
13 static void Main ()
15 D d = new D (M);