Merge pull request #5428 from kumpera/wasm-support-p2
[mono.git] / mcs / tests / test-anon-37.cs
1 using System;
2
3 public class DelegateInit {
4     public delegate void FooDelegate();
5
6     public static readonly FooDelegate _print =
7         delegate() {
8             Console.WriteLine("delegate!");
9         };
10
11     public static void Main(string[] args) {
12         _print();
13     }
14 }