Merge pull request #5428 from kumpera/wasm-support-p2
[mono.git] / mcs / tests / test-337.cs
1 using System;
2
3 public class Test
4 {
5         public static void Main ()
6         {
7                 goto end;
8                 int a;
9                 Console.WriteLine ("unreachable");
10         end:
11                 Console.WriteLine ("end");
12         }
13 }