[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs0171-2.cs
blob47efea0acb669c38a3cf18ec8c042e320f6b150d
1 // CS0171: Field `S.ev' must be fully assigned before control leaves the constructor
2 // Line: 12
4 using System;
6 struct S
8 public event EventHandler ev;
10 public S (int i)