Remove no longer needed explicit -langversion:future argument
[mono-project.git] / mcs / errors / cs1988-2.cs
blob22e30faf93e5349fca10d68cb17a3b9c7fef136b
1 // CS1988: Async methods cannot have ref or out parameters
2 // Line: 12
4 using System;
6 class C
8 delegate void D (ref int i);
10 public static void Main ()
12 D d = async delegate { };