2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-367.cs
blob00572042fcec5bff5e980daa0c43d9eabdb134e3
1 using System;
3 class Foo {}
5 class Repro {
7 static void Main ()
11 static void Bar<TFoo> (TFoo foo) where TFoo : Repro
13 Baz (foo, Gazonk);
16 static void Baz<T> (T t, Action<T> a)
18 a (t);
21 static void Gazonk (Repro f)