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
In class/Microsoft.Build.Tasks/Microsoft.Build.Tasks:
[mcs.git]
/
tests
/
test-733.cs
blob
06a2c6356cd00a60d691420f6b8ed62772d0c506
1
using
System
;
2
3
public class
Test
4
{
5
public static int
Main
()
6
{
7
float
a
=
1
f
/
3
;
8
float
b
= (
float
)
Math
.
Acos
((
float
) (
a
*
3
));
9
Console
.
WriteLine
(
b
);
10
if
(
b
!=
0
)
11
return
1
;
12
13
return
0
;
14
}
15
}