2006-04-26 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / tests / test-anon-37.cs
1 using System;\r
2 \r
3 public class DelegateInit {\r
4     public delegate void FooDelegate();\r
5 \r
6     public static readonly FooDelegate _print =\r
7         delegate() {\r
8             Console.WriteLine("delegate!");\r
9         };\r
10 \r
11     public static void Main(string[] args) {\r
12         _print();\r
13     }\r
14 }