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: 2742abfdb0958a3b07c009a0b444ed75d87b4304 (plain)
1
2
3
4
5
6
7
8
9
// cs0126: an object of type `int' is expected in the return statement
// Line: 7

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