[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0619-27.cs
1 // CS0619: `I' is obsolete: `Do not use it'
2 // Line: 12
3
4 using System;
5
6 [Obsolete("Do not use it", true)]
7 interface I {
8 }
9
10 class B {
11     I i;
12 }