Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / gtest-067.cs
1 class Test
2 {
3         public delegate int Foo<T> (T t, T u);
4
5         public void Hello<U> (Foo<U> foo, U u)
6         { }
7 }
8
9 class X
10 {
11         static int Add (int a, int b)
12         {
13                 return a + b;
14         }
15
16         static void Main ()
17         {
18                 Test test = new Test ();
19                 test.Hello<int> (new Test.Foo<int> (Add), 5);
20         }
21 }