Flush (work in progress)
[mono.git] / mcs / errors / gcs0122-2.cs
1 // CS0122: `Test<float>' is inaccessible due to its protection level
2 // Line: 8
3 // Compiler options: -r:GCS0122-2-lib.dll
4
5 class X
6 {
7         static void Main ()
8         {
9                 Test<float> test = new Test<float> ();
10         }
11 }
12