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

test-668.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12764eff883175143bd9fa21f02149de615f8a97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#if!FOO
# if! BAR
class Bar { };
# endif
#endif

class Test {
	public static void Main ()
	{
		new Bar ();
	}
}