1
0
mirror of https://github.com/golang/go synced 2024-10-01 11:38:34 -06:00
go/internal/lsp/testdata/rank/binexpr_rank.go.in
Rebecca Stambler 6e267b5cc7 internal/lsp: add additional tests for completion
New tests include cases for anonymous structs, composite literals,
ranking of results in binary expressions, and import cycles.

Change-Id: Ic02e84e09101bb9873fc1705bba2594d655bb45b
Reviewed-on: https://go-review.googlesource.com/c/153443
Reviewed-by: Ian Cottrell <iancottrell@google.com>
2018-12-19 22:27:14 +00:00

9 lines
161 B
Go

package rank
func _() {
_ = 5 + ; //@complete(" ;", apple, pear)
y := + 5; //@complete(" +", apple, pear)
if 6 == {} //@complete(" {", apple, pear)
}