2010-03-12 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / errors / gcs0703-3.cs
1 // CS0703: Inconsistent accessibility: constraint type `C.I' is less accessible than `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 }