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

test-95.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7289acfbd1ee545ad076c0ccf4b957ddb028af88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class X {

	double d = 0;

	X ()
	{
	}

	public static int Main ()
	{
		X x = new X ();

		if (x.d != 0)
			return 1;

		return 0;
	}
}