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
[2019-12] [threads] Add back mono_threads_attach_tools_thread as a public API (#18074)
[mono-project.git]
/
mono
/
tests
/
double-cast.cs
blob
63c40d3c0be67451c2b9286ceeb054707f25d9f6
1
using
System
;
2
3
namespace
System
{
4
public class
Test
{
5
public static int
Main
() {
6
double
d
=
5.0
;
7
object
o
=
d
;
8
double
e
= (
double
)
o
;
9
10
if
(
e
!=
d
)
11
return
1
;
12
return
0
;
13
}
14
}
15
}