[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-733.cs
1 using System;
2
3 public class Test
4 {
5         public static int Main ()
6         {
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 ());
12                 }
13
14                 return 0;
15         }
16 }