Flush (work in progress)
[mono.git] /
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