Merge pull request #820 from brendanzagaeski/master
[mono.git] / mcs / tests / test-async-57.cs
1 using System.Threading.Tasks;
2 using System;
3
4 class X
5 {
6         readonly Func<string, Task> action = null;
7
8         public static void Main ()
9         {
10         }
11
12         protected async Task TestAsync ()
13         {
14                 await action ("");
15         }
16 }