summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0029-9.cs
blob: 8f3ce68263287500ab4a2bb3d6a7cf18da8c16a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0029: Cannot implicitly convert type `int' to `System.EventHandler'
// Line: 12

using System;

class C
{
	static event EventHandler h;
	
	public static void Main ()
	{
		h = 0;
	}
}