[unit-tests] Fix Makefile.am when Mono is compiled with LLVM
[mono-project.git] / mcs / errors / cs0832-5.cs
blob37f9ee85f0567cb1eef518719a4c71b395688936
1 // CS0832: An expression tree cannot contain an assignment operator
2 // Line: 11
4 using System;
5 using System.Linq.Expressions;
7 class C
9 public static void Main ()
11 Expression<Func<short?[], short?>> e = l => l [0]++;