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: e6640a68fe9e3685083fb313c433b28899e3f5f4 (plain)
1
2
3
4
5
6
7
8
// cs1032: tokens seen before define
// Line: 4
class X {
#define A

	static void Main () {
	}
}