**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0619-27.cs
blob0a3b88473d6e8f357655f84fbd67ea45ff563bd4
1 // cs0619.cs: 'I' is obsolete: 'Do not use it'
2 // Line: 12
4 using System;
6 [Obsolete("Do not use it", true)]
7 interface I {
10 class B {
11 I i;