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

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

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