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-485.cs
blob
909fc5f8f6e9657e4b2430a0d96f8dca90995d3a
1
// Compiler options: /checked+
2
3
using
System
;
4
5
6
public class
MonoBUG
7
{
8
public static void
Main
(
string
[]
args
)
9
{
10
double
B
=
4.0
;
11
double
K
=
2.0
;
12
double
A
= -
B
/ (
K
*
K
);
13
14
Console
.
WriteLine
(
"
{0}
"
,
A
);
15
}
16
}