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

cs0126.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a78c701ed5c628e053c058706850a75820a93e4b (plain)
1
2
3
4
5
6
7
8
9
// cs0126.cs: An object of a type convertible to `int' is required for the return statement
// Line: 7

class X {
	int Y ()
	{
		return;
	}
}