in System.Collections.Generic:
[mcs.git] / tests / test-733.cs
blob06a2c6356cd00a60d691420f6b8ed62772d0c506
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)
11 return 1;
13 return 0;