2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-485.cs
blob909fc5f8f6e9657e4b2430a0d96f8dca90995d3a
1 // Compiler options: /checked+
3 using System;
6 public class MonoBUG
8 public static void Main (string[] args)
10 double B = 4.0;
11 double K = 2.0;
12 double A = - B / (K * K);
14 Console.WriteLine ("{0}", A);