use MOONLIGHT symbol
[mcs.git] / tests / test-733.cs
blob20c0857a800dccaa9de481fa02fcfa129d2eb742
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 && b != float.NaN)
11 return 1;
13 return 0;