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

public class Test
{
	public static void Main ()
	{
		return;

		Test testStr;
		return;
	}
}