2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-733.cs
blob1131908f089a31fa48feb00293aabea1f12f9f84
1 using System;
3 public class Test
5 public static int Main ()
7 float a = 1f / 3;
8 float b = (float) Math.Acos ((float) (a * 3));
9 Console.WriteLine (b);
10 if (b != 0 && !float.IsNaN (b)) {
11 throw new ApplicationException (b.ToString () + b.GetType ().ToString ());
14 return 0;