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

class C
{
	public static int Main ()
	{
		if (true == false)
			return 1;
		
		return 2;
	}
}