[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1706.cs
1 // CS1706: Anonymous methods and lambda expressions cannot be used in the current context
2 // Line: 13
3
4 using System;
5
6 delegate void TestDelegate();
7
8 class MyAttr : Attribute
9 {
10     public MyAttr (TestDelegate d) { }
11 }
12
13 [MyAttr (delegate {} )]
14 class C
15 {
16 }
17