fix run-test
[mcs.git] / errors / cs0171-2.cs
bloba1c0b11e8e86908fe0749e08a11c71fd273023c5
1 // CS0171: Field `S.ev' must be fully assigned before control leaves the constructor
2 // Line: 12
4 using System;
6 struct S
8 event EventHandler ev;
10 public S (int i)