[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs4006.cs
blobcb9a913f503181efbb4a5773bc43967a0c958311
1 // CS4006: __arglist is not allowed in parameter list of async methods
2 // Line: 9
4 using System.Threading.Tasks;
6 class C
8 public async Task Test (__arglist)
10 await Call ();
13 static Task Call ()
15 return null;