Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-485.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 909fc5f8f6e9657e4b2430a0d96f8dca90995d3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compiler options: /checked+

using System;


public class MonoBUG
{
	public static void Main (string[] args)
	{
		double B = 4.0;
		double K = 2.0;
		double A = - B / (K * K);

		Console.WriteLine ("{0}", A);
	}
}