summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1024-3.cs
blob: 954adbbac628d74f623990135a089d78431ee8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS1024: Wrong preprocessor directive
// Line: 12

using System;

class C
{
	static void Main ()
	{
#if AA
		Console.WriteLine ("DEBUG mode");
# something not valid here
		Console.WriteLine ("NON-DEBUG mode");
#endif
	}
}