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
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs0122-25.cs
blob
267578dbc92696c316f08ce755fada426c4bd06c
1
// CS0122: `AAttribute.AAttribute()' is inaccessible due to its protection level
2
// Line: 9
3
4
class
AAttribute
:
System
.
Attribute
5
{
6
protected
AAttribute
()
{ }
7
}
8
9
[
A
]
10
class
C
11
{
12
}