[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1996.cs
blob7bbfe24b3faea32dea63c3602d5f162a94e9e11a
1 // CS1996: The `await' operator cannot be used in the body of a lock statement
2 // Line: 12
4 using System;
5 using System.Threading.Tasks;
7 class C
9 public async Task Test ()
11 lock (this) {
12 await Call ();
16 static Task Call ()
18 return null;