Updated with review feedback.
[mono.git] / mcs / errors / cs1032.cs
1 // CS1032: Cannot define or undefine preprocessor symbols after first token in file
2 // Line: 4
3 class X {
4 #define A
5
6         static void Main () {
7         }
8 }
9