add bug info
[mcs.git] / tests / test-anon-74.cs
blob2ee5127a8230294ee4508e483e62b034a36650ca
1 static class Foo
3 delegate string[,] SimpleDelegate();
5 static void Baz(SimpleDelegate sd)
7 sd();
10 public static void Main(string[] args)
12 Baz(delegate() {
13 return new string[,] { { "aa" } , { "bb" } };
14 });