Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-anon-100.cs
1 using System;
2 using System.Reflection;
3
4 class C
5 {
6         static Action f = new Action (
7                 delegate {
8                         Assembly[] aa = {
9                                         typeof (object).Assembly,
10                                 };
11                 });
12
13         public static void Main ()
14         {
15         }
16 }