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

cs0164.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fc48c41eac46cfaea64b0e7684edc40b73bb08d (plain)
1
2
3
4
5
6
7
8
// cs0164.cs: This label has not been referenced
// Line: 5
class X {
	static void Main () {
		a:
			return;
	}
}