[unit-tests] Fix Makefile.am when Mono is compiled with LLVM
[mono-project.git] / mcs / errors / cs0828-4.cs
bloba10fcfc2340a451fd4554a43e2ac8a1c1e24d195
1 // CS0828: An anonymous type property `Value' cannot be initialized with `anonymous method'
2 // Line: 8
4 public class Test
6 static void Main ()
8 var v = new { Value = i => 1 };