2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-290.cs
blob046fed6a89c5a2cd86d2abbb8a2e850f8f264218
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()