[eglib] In AIX/generic POSIX, handle null addresses better (#17892)
[mono-project.git] / mcs / tests / test-anon-167.cs
blob923ddd0d407ef5c072380fddea56772e7caddd59
1 public class Foo
3 static void Bar (System.Threading.ThreadStart ts)
7 static void Baz (int yy)
11 public static void Main ()
13 Bar (delegate {
14 foreach (string x in new string[] { "x" }) {
15 int yy;
16 switch (x) {
17 case "x": yy = 1; break;
18 default: continue;
20 Baz (yy);
22 });