Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs0122-35.cs
1 // CS0122: `Test<A>' is inaccessible due to its protection level
2 // Line: 8
3 // Compiler options: -r:CS0122-35-lib.dll
4
5 class X
6 {
7         static void Main ()
8         {
9                 Test<float> test = new Test<float> ();
10         }
11 }
12