blob: 9a0c42bcfb5ff7b0550d8cc126d0c97e2c6b13ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CS0122: `Test.SomeAttribute.SomeAttribute()' is inaccessible due to its protection level
// Line: 10
using System;
namespace Test
{
public class SomeAttribute : Attribute
{
SomeAttribute() {}
}
[SomeAttribute]
public class SomeClass
{
}
}
|