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

test-678.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d810eb53e0c36376dbf1e90d31003968d21ce55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;

public class NaNTest
{
	public NaNTest (double width, double height)
	{
		if (width < 0 || height < 0)
			throw new ArgumentException ("fails");
		
		if (width <= 0 || height <= 0)
			throw new ArgumentException ("fails 2");
		
		if (width > 0 || height > 0)
			throw new ArgumentException ("fails 3");
		
		if (width >= 0 || height >= 0)
			throw new ArgumentException ("fails 4");
	}

	public static int Main ()
	{
		if (Double.NaN < 0 || Double.NaN < 0)
			throw new ArgumentException ("passes");

		new NaNTest (Double.NaN, Double.NaN);
		
		return 0;
	} 
}