Remove invalid tests for image palettes in GdiPlusTest (#5671)
[mono.git] / mcs / errors / cs0029-9.cs
1 // CS0029: Cannot implicitly convert type `int' to `System.EventHandler'
2 // Line: 12
3
4 using System;
5
6 class C
7 {
8         static event EventHandler h;
9         
10         public static void Main ()
11         {
12                 h = 0;
13         }
14 }