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

cs0670.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e56ecbb2238f44f104b5e569cda7417d19eb0b8 (plain)
1
2
3
4
5
6
7
8
// cs0670.cs: Fields cannot have void type
// Line: 5

class X {
	void j;

	static void Main () {}
}