summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0832-3.cs
blob: 0203b0830a2ca58324da951524b30a621b8b7002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0832: An expression tree cannot contain an assignment operator
// Line: 11

using System;
using System.Linq.Expressions;

class C
{
	public static void Main ()
	{
		Expression<Func<int, int>> e = (a) => --a;
	}
}