Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-425.cs
1 using System;
2
3 public class EventClass<T>
4 {
5         public delegate void HookDelegate (T del);
6 }
7
8 public class Test
9 {
10         public static void Main ()
11         {
12                 Console.WriteLine (typeof (EventClass<>.HookDelegate));
13         }
14 }