Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-290.cs
1 // Compiler options: -warnaserror -warn:4
2
3 using System;
4
5 public delegate void GenericEventHandler<U, V>(U u, V v);
6
7 public class GenericEventNotUsedTest<T>
8 {
9         event GenericEventHandler<GenericEventNotUsedTest<T>, T> TestEvent;
10
11         public void RaiseTestEvent(T t)
12         {
13                 TestEvent(this, t);
14         }
15 }
16
17 public interface IFoo {
18                 event EventHandler blah;
19 }
20
21 public static class TestEntry
22 {
23         public static void Main()
24         {
25         }
26 }
27