repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
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
}