Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git] / mcs / tests / test-859.cs
blobb86626332d243873acc16c13a08703192259c0fc
1 class X
3 public static void Main ()
5 int i = 0;
6 if (i == 1) {
7 a:
8 switch (i) {
9 default:
10 goto a;
12 } else if (i == 2) {
14 switch (i) {
15 default:
16 goto a;