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-5.cs
blob
75069a2e31b50871ed371bb99a74ab6c9b4db815
1
// cs0122-5.cs: `Test.Foo.Bar' is inaccessible due to its protection level
2
// Line: 11
3
4
public class
Test
5
{
6
public class
Foo
7
{
8
private class
Bar
{}
9
}
10
11
private class
Bar
:
Foo
.
Bar
12
{
13
}
14
15
public static void
Main
() {}
16
}
17