2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / 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