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-02-15 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
errors
/
cs0122-26.cs
blob
63733c4a79a22f1dc5674ef5c498cadf3f9fa102
1
// CS0122: `C.I' is inaccessible due to its protection level
2
// Line: 11
3
4
class
C
5
{
6
protected interface
I
7
{
8
}
9
}
10
11
class
A
:
C
.
I
12
{
13
}