[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1593-5.cs
blob6055feea81195a266fbbc4b85f80032280fd4512
1 // CS1593: Delegate `System.Action<System.Threading.Tasks.Task>' does not take `0' arguments
2 // Line: 17
4 using System;
5 using System.Threading.Tasks;
6 using System.Collections.Generic;
8 namespace CrashRepro.Core
10 public class X
12 async void Foo ()
14 var pushes = await Run ().ContinueWith (l =>
16 for (int i = 0; i < 1; ++i)
17 Run ().ContinueWith(() => { });
18 });
21 Task Run ()
23 return null;