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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0122-27.cs
blob
873ea55e9cb4ecdb4d8933bc9902c688b0e5c2d1
1
// CS0122: `G.GG' 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