imported everything from my branch (which is slightly harmless).
[mono.git] / mcs / errors / cs0111-9.cs
1 // cs0111-9.cs: Type `C' already defines a member called `this' with the same parameter types
2 // Line: 6
3
4 class C
5 {
6     bool this [int i] { get { return false; } }
7     bool this [int i] { get { return true; } }
8 }