Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-async-25.cs
1 using System;
2 using System.Threading.Tasks;
3
4 class Program
5 {
6         static void CompilationTestOnly ()
7         {
8                 var t = new Task<int> (() => 5);
9                 var t2 = Task.Run (() => { return t; });
10         }
11         
12         public static void Main ()
13         {
14         }
15 }