summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0619-12.cs
blob: 8a374974510f9cd74bd1f732d20d7254308a7022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// CS0619: `I' is obsolete: `'
// Line: 13

using System;

[Obsolete("", true)]
interface I
{
}

class A
{
        int this [I index] {
                get {
                        return 15;
                }
        }    
}