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

test-694.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c19d0a88bd0be4800aff21620331882bc195a25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compiler options: -d:X

#undef X

#if X
private // must be ignored
#else
public
#endif
class Test
{
	public static int Main ()
	{
		return 0;
	}
}