[sre] Wrap mono_image_create_token with HANDLE_FUNCTION_{ENTER,RETURN}
[mono-project.git] / mcs / tests / test-async-58.cs
blob484746c8bcca99640ccf6aee2551f773afbf09b7
1 using System;
2 using System.Threading.Tasks;
4 public class A
6 public int Get ()
8 return 1;
12 public class B : A
14 public async Task<int> GetAsync ()
16 return base.Get ();
19 static void Main ()
21 new B ().GetAsync ().Wait ();