2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / tests / test-anon-51.cs
blobe44d6b53e1bd9aa0603af50ba0da79286af30df9
1 using System;
3 public delegate void FooDelegate ();
5 public class X {
6 public static readonly FooDelegate Print = delegate {
7 Console.WriteLine ("delegate!");
8 };
10 public static void Main ()
12 Print ();