2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / tests / gtest-290.cs
blob5666733b7800c8d54399312606ad954c19734ca9
1 // Compiler options: -warnaserror -warn:4
3 using System;
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)
13 TestEvent(this, t);
17 public interface IFoo {
18 event EventHandler blah;
21 public static class TestEntry
23 public static void Main()