Merge pull request #5560 from kumpera/wasm-work-p3
[mono.git] / mcs / tests / test-896.cs
1 using System;
2
3 class Program
4 {
5         public static void Main ()
6         {
7                 goto L1;
8                 int z;
9         L1: 
10                 z = 3;
11                 Console.WriteLine (z);
12         }
13 }