Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs1024-3.cs
1 // CS1024: Wrong preprocessor directive
2 // Line: 12
3
4 using System;
5
6 class C
7 {
8         static void Main ()
9         {
10 #if AA
11                 Console.WriteLine ("DEBUG mode");
12 # something not valid here
13                 Console.WriteLine ("NON-DEBUG mode");
14 #endif
15         }
16 }