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

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

public class Test
{
	public delegate void MyEvent ();
	public event MyEvent XX {
		add { }
		remove { }
	}
        
	public void add_XX (MyEvent e) { return; }
}