summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0162-13.cs
blob: f4e8ad608f4df849c08f6567aa02760f80622544 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0162: Unreachable code detected
// Line: 10
// Compiler options: -warnaserror -warn:2

class C
{
	static int Main () 
	{
		while (!new bool {});
		return 1;
	}
}