Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git] / mcs / tests / test-874.cs
blobb8f52f0f988b0943d019fc97b2239946fe9f1caf
1 using System;
3 class X
5 public static void Main ()
7 int a;
8 goto X;
9 A:
10 Console.WriteLine (a);
11 goto Y;
13 a = 1;
14 goto A;
16 return;