[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[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 }