[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8188.cs
blobd2f225fec5f11fe697971cf1470beb74bdab9f30
1 // CS8188: An expression tree cannot not contain a throw expression
2 // Line: 11
4 using System;
5 using System.Linq.Expressions;
7 class C
9 public static void Main ()
11 Expression<Func<object>> l = () => throw null;