-
Notifications
You must be signed in to change notification settings - Fork 846
Closed
Labels
Area-Debugstepping, debug points, stacks and morestepping, debug points, stacks and moreBugImpact-High(Internal MS Team use only) Describes an issue with extreme impact on existing code.(Internal MS Team use only) Describes an issue with extreme impact on existing code.Ready
Description
We have a simple mistake in debug stepping for this simple loop, F11 doesn't step through the loop - it seems to be only when the loop body is a single statement/expression.
let h3 inp =
for x in inp do
printfn $"hello, x = {x}"
h3 [1..3]As soon as you do anything else inside the stepping is fine:
let h3 inp =
for x in inp do
let y = 1
printfn $"hello, x = {x}"
h3 [1..3]Metadata
Metadata
Assignees
Labels
Area-Debugstepping, debug points, stacks and morestepping, debug points, stacks and moreBugImpact-High(Internal MS Team use only) Describes an issue with extreme impact on existing code.(Internal MS Team use only) Describes an issue with extreme impact on existing code.Ready