The following code reports VSTHRD002, but it should not: ```csharp Task<int> task = default; task.ContinueWith(t => t.Result); // t is known to be completed at the point of t.Result ```