Files
linux-packaging-mono/mcs/errors/cs0122-26.cs

14 lines
134 B
C#
Raw Normal View History

// CS0122: `C.I' is inaccessible due to its protection level
// Line: 11
class C
{
protected interface I
{
}
}
class A : C.I
{
}