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-451.cs
blob
64d52f609725e455d03ba099491f66047966acce
1
using
System
;
2
3
enum
Foo { foo }
;
4
5
public class
Test
6
{
7
static void
Main
()
8
{
9
ValueType vt
= (
ValueType
)
1
;
10
IComparable ic
= (
IComparable
)
1
;
11
12
Enum e
= (
Enum
)
Foo
.
foo
;
13
}
14
}