Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0703.cs
1 // CS0703: Inconsistent accessibility: constraint type `I' is less accessible than `C<T>'
2 // Line: 8
3
4 interface I
5 {
6 }
7
8 public class C<T>  where T : I
9 {
10 }