summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1994.cs
blob: 94dc107cc6ffe553685dbca8ccd6cf38240d83d7 (plain)
1
2
3
4
5
6
7
// CS1994: `C.Test()': The async modifier can only be used with methods that have a body
// Line: 6

abstract class C
{
	public async abstract void Test ();
}