Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-async-25.cs
blob55a0197f9553b5f3c38c66d6c3eb93af0cf275aa
1 using System;
2 using System.Threading.Tasks;
4 class Program
6 static void CompilationTestOnly ()
8 var t = new Task<int> (() => 5);
9 var t2 = Task.Run (() => { return t; });
12 public static void Main ()