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: f17d4d39607225a69b0e81d958f78e9b24d4cc64 (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 Y ()
	{
		return;
	}
}