[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8157.cs
blob35d700f19c44761ad99aaf2cd5ab4d20130e1428
1 // CS8157: Cannot return `r' by reference because it was initialized to a value that cannot be returned by reference
2 // Line: 11
4 struct S
6 int i;
8 ref int M ()
10 ref int r = ref i;
11 return ref r;