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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0122-32.cs
blob
4988ff1578f5e37eff008ab0db5f65eb5c1b8412
1
// CS0122: `A.Foo()' is inaccessible due to its protection level
2
// Line: 23
3
4
class
A
5
{
6
public void
Foo
(
int
i
)
7
{
8
}
9
10
private void
Foo
()
11
{
12
}
13
}
14
15
class
B
:
A
16
{
17
public static void
Main
()
18
{
19
}
20
21
void
Test
()
22
{
23
Foo
();
24
}
25
}