[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0122-25.cs
1 // CS0122: `AAttribute.AAttribute()' is inaccessible due to its protection level
2 // Line: 9
3
4 class AAttribute : System.Attribute
5 {
6         protected AAttribute() { }
7 }
8
9 [A]
10 class C
11 {
12 }