[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0171-2.cs
1 // CS0171: Field `S.ev' must be fully assigned before control leaves the constructor
2 // Line: 12
3
4 using System;
5
6 struct S
7 {
8         public event EventHandler ev;
9         
10         public S (int i)
11         {
12         }
13 }