Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs8188.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2f225fec5f11fe697971cf1470beb74bdab9f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS8188: An expression tree cannot not contain a throw expression
// Line: 11

using System;
using System.Linq.Expressions;

class C
{
	public static void Main ()
	{
		Expression<Func<object>> l = () => throw null;
	}
}