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

11 lines
194 B
C#
Raw Normal View History

// CS0122: `InternalClass' is inaccessible due to its protection level
// Line: 9
// Compiler options: -r:CS0122-38-lib.dll
class M
{
public static void Main ()
{
new InternalClass ();
}
}