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

using System;

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

class B {
    I i;
}