2010-05-27 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / gcs0309-5.cs
1 // CS0309: The type `int' must be convertible to `System.EventArgs' in order to use it as parameter `TEventArgs' in the generic type or method `System.EventHandler<TEventArgs>'
2 // Line: 5
3
4 class X {
5         System.EventHandler <int> x;
6         static void Main () {}
7 }
8
9