Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / gtest-367.cs
1 using System;
2
3 class Foo {}
4
5 class Repro {
6
7         static void Main ()
8         {
9         }
10
11         static void Bar<TFoo> (TFoo foo) where TFoo : Repro
12         {
13                 Baz (foo, Gazonk);
14         }
15
16         static void Baz<T> (T t, Action<T> a)
17         {
18                 a (t);
19         }
20
21         static void Gazonk (Repro f)
22         {
23         }
24 }