Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2009-10-29 12:54:53 +0300
committerMarek Safar <marek.safar@gmail.com>2009-10-29 12:54:53 +0300
commit68c03b63640557129b4b7ce808fbbe05cc9ba899 (patch)
tree4dfa269c8baeb795979f96cd06aa673755c7ee80 /mcs/tests/test-733.cs
parent0edae40bc4396796f0e6b051edff5d1f3261f635 (diff)
New test.
svn path=/trunk/mcs/; revision=144995
Diffstat (limited to 'mcs/tests/test-733.cs')
-rw-r--r--mcs/tests/test-733.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/tests/test-733.cs b/mcs/tests/test-733.cs
new file mode 100644
index 00000000000..06a2c6356cd
--- /dev/null
+++ b/mcs/tests/test-733.cs
@@ -0,0 +1,15 @@
+using System;
+
+public class Test
+{
+ public static int Main ()
+ {
+ float a = 1f / 3;
+ float b = (float) Math.Acos ((float) (a * 3));
+ Console.WriteLine (b);
+ if (b != 0)
+ return 1;
+
+ return 0;
+ }
+}