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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
test-191.cs
blob
a85eac8c2a7c91166c9a57c95f56163ac31f3afb
1
//
2
// Accessibility tests for NestedPrivate classes
3
//
4
class
X
{
5
6
private class
E
{
7
}
8
9
private class
D
{
10
11
private class
P
{
12
//
13
// Declares an field of a "parent" private class
14
//
15
E c
;
16
17
}
18
}
19
}
20
21
class
Y
{
22
private class
Op
{
23
public
D d
;
24
}
25
26
private enum
D
{
27
}
28
}
29
30
class
R
{
31
static void
Main
()
32
{
33
}
34
}
35