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

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

using System.Runtime.CompilerServices;
class ErrorClass {
	[IndexerName ("Blah")]
	public int this [int a] {
            get { return 1; }
	}
        
        public int Blah;
}