[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs0619-12.cs
1 // CS0619: `I' is obsolete: `'
2 // Line: 13
3
4 using System;
5
6 [Obsolete("", true)]
7 interface I
8 {
9 }
10
11 class A
12 {
13         int this [I index] {
14                 get {
15                         return 15;
16                 }
17         }    
18 }