blob: e30975028cedd68422c3f9c3acca8905a3cf76e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0122: `Internal' is inaccessible due to its protection level
// Line: 9
// Compiler options: -r:CS0122-38-lib.dll
class M
{
public static void Main ()
{
new Internal ();
}
}
|