summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0171-2.cs
blob: 47efea0acb669c38a3cf18ec8c042e320f6b150d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0171: Field `S.ev' must be fully assigned before control leaves the constructor
// Line: 12

using System;

struct S
{
	public event EventHandler ev;
	
	public S (int i)
	{
	}
}