blob: 0a7940912c1cf58ae880401280a49a414e41aff0 [file]
Regression test for go.dev/issue/79335: crash when highlighting a
continue'statement not inside a loop.
-- go.mod --
module example.com
go 1.18
-- p.go --
package p
func _() {
continue //@hiloc(cont, "continue", text), diag("continue", re"continue")
//@highlight(cont)
}