Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs1994.cs
1 // CS1994: `C.Test()': The async modifier can only be used with methods that have a body
2 // Line: 6
3
4 abstract class C
5 {
6         public async abstract void Test ();
7 }