summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0165-26.cs
blob: b1442187b93192b64707b06d64bc69ea520c6fb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0165: Use of unassigned local variable `eh'
// Line: 12

using System;

public class E
{
	public static void Main ()
	{
		EventHandler eh;
		eh = delegate {
			Console.WriteLine (eh);
		};
	}
}