[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[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