[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0066-2.cs
1 // CS0066: `Sample.reference': event must be of a delegate type
2 // Line: 5
3
4 public class Sample {        
5         event object reference;
6 }