Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-anon-37.cs
blobe5d2248ae32f4cbe7bc77009e228d94d7a368adb
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();