[mcs] C# 7 tuple (foundation only).
[mono.git] / mcs / errors / cs1988-2.cs
1 // CS1988: Async methods cannot have ref or out parameters
2 // Line: 12
3
4 using System;
5
6 class C
7 {
8         delegate void D (ref int i);
9         
10         public static void Main ()
11         {
12                 D d = async delegate { };
13         }
14 }