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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
tests
/
test-268.cs
blob
95c52e89b6b09101dda13a216aaf6ea8b8195022
1
public enum
MyEnum { V = 1 }
2
3
class
X
{
4
public
MyEnum MyEnum
;
5
class
Nested
{
6
internal
MyEnum
D
() {
7
return
MyEnum
.
V
;
8
}
9
}
10
11
public static int
Main
() {
12
Nested n
=
new
Nested
();
13
return
n
.
D
() ==
MyEnum
.
V
?
0
:
1
;
14
}
15
}