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: 69f3684a43b57ea32e4e18c0bc2523d0c5609f08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class X {

	double d = 0;

	void X ()
	{
	}

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

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

		return 0;
	}
}