2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-anon-61.cs
blob519397e4903321f3cf18ca5a99e9eeef90decd4f
1 using System;
2 using System.Collections.Generic;
4 public class TestCase
6 static void Main ()
8 Test (new IList<int> [] { new int[] { 1, 2, 3 } });
11 public static void Test<T> (IList<IList<T>> l)
13 Action action = delegate {
14 var temp = l;
15 Func<IList<IList<T>>, int> f = a => 1;
16 f (temp);
19 action ();