[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8149-2.cs
blob3514769c702de66c8190942c54727077c930786c
1 // CS8149: By-reference returns can only be used in lambda expressions that return by reference
2 // Line: 12
4 using System;
6 class A
8 int p;
10 void Test ()
12 Action a = () => ref p;