2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mono / tests / unreachable-code.cs
blobc1a9923e3749863a7631e70d36fa061290ebde77
1 using System;
3 // You need to compile this test with mcs:
4 // csc will discard unreachable code sections
6 namespace Test {
7 public class Test {
8 public static int Main () {
9 int var = 0;
10 goto label2;
11 label1:
12 goto label2;
13 label2:
14 return var;