Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-anon-74.cs
1 static class Foo
2 {
3         delegate string[,] SimpleDelegate();
4
5         static void Baz(SimpleDelegate sd)
6         {
7                 sd();
8         }
9
10         public static void Main(string[] args)
11         {
12                 Baz(delegate() {
13                         return new string[,] { { "aa" } , { "bb" } };
14                 });
15         }
16 }