New test.
[mono.git] / mcs / tests / test-485.cs
1 // Compiler options: /checked+
2
3 using System;
4
5
6 public class MonoBUG
7 {
8         public static void Main (string[] args)
9         {
10                 double B = 4.0;
11                 double K = 2.0;
12                 double A = - B / (K * K);
13
14                 Console.WriteLine ("{0}", A);
15         }
16 }