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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0122-28.cs
blob
31ad43ec364654d6ec7b872f3bb40bc56e5ec275
1
// CS0122: `A.X' is inaccessible due to its protection level
2
// Line: 18
3
4
using
System
;
5
6
class
A
7
{
8
class
X
9
{
10
public static string
V
=
"a"
;
11
}
12
}
13
14
class
C
:
A
15
{
16
public static void
Main
()
17
{
18
Console
.
WriteLine
(
X
.
V
);
19
}
20
}