blob: 98296dd4295c93deb1179bba0e3194f01bedc971 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0122: `N.S' is inaccessible due to its protection level
// Line: 9
// Compiler options: -r:CS0122-36-lib.dll
class X
{
static void Main ()
{
var v = new N.S ();
}
}
|