repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0122-12.cs
blob
9a0c42bcfb5ff7b0550d8cc126d0c97e2c6b13ba
1
// CS0122: `Test.SomeAttribute.SomeAttribute()' is inaccessible due to its protection level
2
// Line: 10
3
4
using
System
;
5
6
namespace
Test
7
{
8
public class
SomeAttribute
:
Attribute
9
{
10
SomeAttribute
() {}
11
}
12
13
[
SomeAttribute
]
14
public class
SomeClass
15
{
16
}
17
}