Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git] / mcs / errors / cs0165-26.cs
blobb1442187b93192b64707b06d64bc69ea520c6fb4
1 // CS0165: Use of unassigned local variable `eh'
2 // Line: 12
4 using System;
6 public class E
8 public static void Main ()
10 EventHandler eh;
11 eh = delegate {
12 Console.WriteLine (eh);