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

using System;

[Obsolete("Do not use it.", true)]
interface I
{
}

class A
{
}

class C: A, I
{
}