Updated with review feedback.
[mono.git] / mcs / tests / test-anon-51.cs
1 using System;
2
3 public delegate void FooDelegate ();
4
5 public class X {
6         public static readonly FooDelegate Print = delegate {
7                 Console.WriteLine ("delegate!");
8         };
9
10         public static void Main ()
11         {
12                 Print ();
13         }
14 }