summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0102-9.cs
blob: e47e0d9488833488332b1b2fed6b2c0f698bb82a (plain)
1
2
3
4
5
6
7
// CS0102: The type `SampleClass' already contains a definition for `EE'
// Line: 6

public class SampleClass {
	public delegate void EE ();
	public event EE EE;
}