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

test-60.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04161d534487f86d54770c83541e920ae28a0e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// Really lame test, but it should be fine for now
//
#if (X)
#endif

#if YY
#errro this should not be printed
#if X
#elif Y
#else
#endif
#else
class X {
	static int Main ()
	{
		return 0;
	}
}
#endif