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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0122-3.cs
blob
dbd72d791ac0c7197b0de255268277d6caa6d2ac
1
// CS0122: `A.B' is inaccessible due to its protection level
2
// Line: 11
3
4
interface
r
{
5
A
.
B
aaa
();
6
}
7
8
class
A
{
9
enum
B
{
10
D
11
}
12
}
13
14
class
B
{
15
static void
Main
()
16
{
17
A
.
B x
=
A
.
B
.
D
;
18
}
19
}