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