* Makefile: Build the make-map.exe in Mono.Unix.Native; add /nowarn:0618 to
[mono.git] / mcs / errors / gcs0309-5.cs
1 // CS0309: The type `System.Int32' must be convertible to `System.EventArgs' in order to use it as parameter `T' in the generic type or method `System.EventHandler`1<T>'
2 // Line: 5
3 class X {
4         System.EventHandler <int> x;
5         static void Main () {}
6 }
7
8