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-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0122-29.cs
blob
1f038b2ee0ca430ead3e1e0dddfac3cfeb3fe850
1
// CS0122: `Foo.Bar()' is inaccessible due to its protection level
2
// Line: 17
3
4
using
System
;
5
6
public class
Foo
7
{
8
void
Bar
()
9
{
10
}
11
}
12
13
public class
Baz
:
Foo
14
{
15
public static void
Main
(
String
[]
args
)
16
{
17
Bar
();
18
}
19
}