[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1986-2.cs
1 // CS1986: The `await' operand type `int' must have suitable GetAwaiter method
2 // Line: 15
3
4 static class S
5 {
6         public static void GetAwaiter (this int i)
7         {
8         }
9 }
10
11 class A
12 {
13         static async void Test ()
14         {
15                 await 1;
16         }
17 }