Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git] / mcs / tests / test-873.cs
blobabe3b3b4ffa4ec832d7873c962d4bc0a1af287b1
1 using System;
3 class Program
5 static int Main ()
7 int foo = 9;
9 switch (foo) {
10 case 1:
11 gotoTarget:
13 return 0;
15 default:
17 if (foo != 0) {
18 goto gotoTarget;
21 break;
25 return 1;