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
add comment
[mcs.git]
/
tests
/
test-647.cs
blob
ce129c559a05cc0f1918661272dd9cf5b01dc04d
1
using
System
;
2
3
enum
DT
:
byte
{
4
Foop
5
}
6
7
public class
Foo
8
{
9
public static void
Main
()
10
{
11
DT dt
;
12
dt
= (
DT
)
byte
.
Parse
(
"123"
);
13
dt
= (
DT
)
decimal
.
Parse
(
"123"
);
14
}
15
}
16