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: 8a134a566e1eec3cea3a13ea34c9b4bb87a05625 (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 ()
	{
	}

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

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

		return 0;
	}
}