[mcs] C#7 throw expression
[mono.git] / mcs / errors / cs8188.cs
1 // CS8188: An expression tree cannot not contain a throw expression
2 // Line: 11
3
4 using System;
5 using System.Linq.Expressions;
6
7 class C
8 {
9         public static void Main ()
10         {
11                 Expression<Func<object>> l = () => throw null;
12         }
13 }