[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8160.cs
blob2b4ea42c5ab7ab730a27603571f540d87c25cb6b
1 // CS8160: A readonly field cannot be returned by reference
2 // Line: 10
4 class X
6 readonly int f = 0;
8 ref int Test ()
10 return ref f;