Files
linux-packaging-mono/mcs/tests/gtest-425.cs

15 lines
205 B
C#
Raw Normal View History

using System;
public class EventClass<T>
{
public delegate void HookDelegate (T del);
}
public class Test
{
public static void Main ()
{
Console.WriteLine (typeof (EventClass<>.HookDelegate));
}
}