// CS0703: Inconsistent accessibility: constraint type `C.I' is less accessible than `C.Foo()' // Line: 10 public class C { interface I { } public void Foo() where T : I { } }