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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0122-27.cs
blob
778b352c8d33e2dca5064cd63809430a9c4be216
1
// CS0122: `G.GG.F' is inaccessible due to its protection level
2
// Line: 14
3
4
class
G
5
{
6
private class
GG
7
{
8
public class
F { }
9
}
10
}
11
12
class
X
13
{
14
G
.
GG
.
F foo
;
15
}
16