[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[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 }