blob: 267578dbc92696c316f08ce755fada426c4bd06c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0122: `AAttribute.AAttribute()' is inaccessible due to its protection level
// Line: 9
class AAttribute : System.Attribute
{
protected AAttribute() { }
}
[A]
class C
{
}
|