2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-406.cs
blob0d7f6089d7ee2a63f2fb6fa6a9eb31de4ca6d1c4
1 using System;
2 using System.Collections.Generic;
4 class Test<T>
6 public void Foo <TOutput> (Func <T, TOutput> converter)
11 public class C<A, B>
13 public C (IEnumerable<B> t)
15 new Test<B> ().Foo (a => a);
19 class M
21 public static void Main ()