mirror of
https://github.com/golang/go
synced 2024-11-19 03:44:40 -07:00
f59e586bb3
This CL ensures that a "." inside a string literal will return an empty completion list. Fixes golang/go#30477 Change-Id: I1442d0acab4c12a829047805f745c4729d69c208 Reviewed-on: https://go-review.googlesource.com/c/tools/+/167857 Reviewed-by: Rebecca Stambler <rstambler@golang.org> Run-TryBot: Rebecca Stambler <rstambler@golang.org>
6 lines
64 B
Go
6 lines
64 B
Go
package stringlit
|
|
|
|
func _() {
|
|
_ := "hello." //@complete(".")
|
|
}
|