Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1032.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb136397786c1158b730f4df53ed13769a320cd9 (plain)
1
2
3
4
5
6
7
8
9
// cs1032.cs: Cannot define or undefine preprocessor symbols after first token in file
// Line: 4
class X {
#define A

	static void Main () {
	}
}