[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs1986-4.cs
blob8ad071abff097039df72860ce68b78b54700ff94
1 // CS1986: The `await' operand type `int' must have suitable GetAwaiter method
2 // Line: 16
4 static class S
6 public static int GetAwaiter<T> (this int i)
8 return 1;
12 class A
14 static async void Test ()
16 await 9;