[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs4001.cs
1 // CS4001: Cannot await `void' expression
2 // Line: 10
3
4 using System;
5
6 class A
7 {
8         static async void Test ()
9         {
10                 await Console.WriteLine ("await");
11         }
12 }