"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs0122-25.cs
blob267578dbc92696c316f08ce755fada426c4bd06c
1 // CS0122: `AAttribute.AAttribute()' is inaccessible due to its protection level
2 // Line: 9
4 class AAttribute : System.Attribute
6 protected AAttribute() { }
9 [A]
10 class C