dotnet/roslyn

VB displays wrong error when [Await] doesn't correspond to a valid routine

Open

#7,593 opened on Dec 18, 2015

View on GitHub
 (8 comments) (0 reactions) (0 assignees)C# (4,257 forks)batch import
Area-CompilersBugConcept-Diagnostic Clarityhelp wanted

Repository metrics

Stars
 (20,414 stars)
PR merge metrics
 (Avg merge 6d 17h) (256 merged PRs in 30d)

Description

I was trying the VB.NET version of a C# issue (that does seem to be specific to LinqPad) and found an erroneous error message.

The code below should say something like "BC30451 'Await' is not declared. It may be inaccessible due to its protection level.", but in fact says "BC37058 'Await' can only be used within an Async method. Consider marking this method with the 'Async' modifier and changing its return type to 'Task'." and the VS2015 IDE (update 1) even suggests a "potential fix" of putting another async next to the one it faithfully retains!

Note that if you uncomment out the definition of an [Await] routine, the code compiles and runs as expected (calling [Await] only once).

Module Module1

Async Sub AsyncMain()
    Dim i = Task.FromResult(1), j = Task.FromResult(2), k = Task.FromResult(3)

    System.Console.WriteLine([Await](i) + Await (j) + Await (k))

End Sub

Sub Main()
    AsyncMain()
    If Debugger.IsAttached Then _
        Console.ReadLine()
End Sub

'Function [Await](I As Task(Of Integer)) As Integer
'    Dim r = I.GetAwaiter.GetResult
'    Console.WriteLine($"Await called for {r}")
'    Return r
'End Function
End Module

Contributor guide