[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0703-3.cs
1 // CS0703: Inconsistent accessibility: constraint type `C.I' is less accessible than `C.Foo<T>()'
2 // Line: 10
3
4 public class C
5 {
6         interface I
7         {
8         }
9
10         public void Foo<T>()  where T : I
11         {
12         }
13 }