blob: 37f9ee85f0567cb1eef518719a4c71b395688936 (
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<short?[], short?>> e = l => l [0]++;
}
}
|