[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-async-05.cs
blobdf57e8a3a5eb40026cd24ba2acf5bd6f837826ca
1 using System.Threading.Tasks;
3 class C
5 public async Task SynchronousCall (int arg)
7 AnotherTask (arg);
10 Task AnotherTask (int arg)
12 return Task.FromResult (arg);
15 public static void Main ()
17 new C ().SynchronousCall (1);