**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0102-4.cs
blob6acd2240009bc22965ecb2e92eecfbee13c978cf
1 // cs0102.cs: The class 'ErrorClass' already contains a definition for 'Blah'
2 // Line: 7
4 using System.Runtime.CompilerServices;
5 class ErrorClass {
6 [IndexerName ("Blah")]
7 public int this [int a] {
8 get { return 1; }
11 public int Blah;