Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0102-10.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2df12882e2903f4eefcb1ddb01d3f58ce0bebd6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0102.cs: The class 'SampleClass' already contains a definition for 'add_XX'
// Line: 13

public class SampleClass {
	public delegate void MyEvent ();
	public event MyEvent XX {
		add { }
		remove { }
	}
        
        bool add_XX;
}