1 // Compiler options: -warnaserror -warn:4
5 public delegate void GenericEventHandler
<U
, V
>(U u
, V v
);
7 public class GenericEventNotUsedTest
<T
>
9 event GenericEventHandler
<GenericEventNotUsedTest
<T
>, T
> TestEvent
;
11 public void RaiseTestEvent(T t
)
17 public interface IFoo
{
18 event EventHandler blah
;
21 public static class TestEntry
23 public static void Main()