2006-12-05 Chris Toshok <toshok@ximian.com>
[mcs.git] / tests / test-anon-37.cs
blobab1e9abbf59e2533f34cb4e1cf01897f1f6501a8
1 using System;
3 public class DelegateInit {
4 public delegate void FooDelegate();
6 public static readonly FooDelegate _print =
7 delegate() {
8 Console.WriteLine("delegate!");
9 };
11 public static void Main(string[] args) {
12 _print();