[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs1024-3.cs
blob954adbbac628d74f623990135a089d78431ee8e6
1 // CS1024: Wrong preprocessor directive
2 // Line: 12
4 using System;
6 class C
8 static void Main ()
10 #if AA
11 Console.WriteLine ("DEBUG mode");
12 # something not valid here
13 Console.WriteLine ("NON-DEBUG mode");
14 #endif