[sdks] Fix README.md
[mono-project.git] / mcs / tests / gtest-367.cs
blob6fa68ce75ef664440b58ca9e532a46b81bbe2cdb
1 using System;
3 class Foo {}
5 class Repro {
7 public 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)