blob: 654b2cb035f4d628c202bf6d6a9f910b020ae610 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0122: `Test<A>' is inaccessible due to its protection level
// Line: 8
// Compiler options: -r:CS0122-35-lib.dll
class X
{
static void Main ()
{
Test<float> test = new Test<float> ();
}
}
|