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

cs0111-13.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62ec3fec76cd8c013e1415554ac816af4eab187b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs111.cs : Class 'Test' already defines a member called 'add_XX' with the same parameter types
// Line : 12

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