New test
[mono.git] / mcs / errors / cs0315.cs
1 // CS0315: The type `int' cannot be used as type parameter `TEventArgs' in the generic type or method `System.EventHandler<TEventArgs>'. There is no boxing conversion from `int' to `System.EventArgs'
2 // Line: 5
3
4 class X {
5         System.EventHandler <int> x;
6         static void Main () {}
7 }
8
9