[Mono.Profiler.Log] Support MLPD version 13
[mono.git] / mcs / tests / test-anon-166.cs
1 using System;
2 using System.Collections.Generic;
3
4 class A
5 {
6         void Test<T, U> () where T : class, IList<U>
7         {
8                 Action a = () => {
9                         var d = default (T);
10                         Action a2 = () => {
11                                 d = null;
12                         };
13                         
14                         a2 ();
15                 };
16                 
17                 a ();
18         }
19         
20         public static int Main ()
21         {
22                 var a = new A ();
23                 a.Test<int[], int> ();
24                 return 0;
25         }
26 }