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

cs0161-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3cf57dd436992cc34c55c1cbd1708c2b5356597f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0161: Not all code paths return a value
// Line: 4
class Test {
	static int Main () {
		bool b = false;
		while (true) {
			if (b)
				break;
			else
				break;
		}
	}
}