[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[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 }