[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8198.cs
blob267c57ea0a9cf336a5f04de28c16a7548f3d41bc
1 // CS8198: An expression tree cannot contain out variable declaration
2 // Line: 11
4 using System;
5 using System.Linq.Expressions;
7 class C
9 static void Main()
11 Expression<Func<bool>> e = () => Out (out int x);
14 static bool Out (out int value)
16 value = 3;
17 return true;