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-883.cs
blob
63d6e20a57d6ae04fa4a6619c792644592c17724
1
// Compiler options: -r:test-883-lib.dll -t:library
2
3
public enum
E
4
{
5
TestField
=
3
6
}
7
8
public class
Second
9
{
10
public void
TestFinal
()
11
{
12
TestClass
.
Foo
(
E
.
TestField
);
13
}
14
}