mirror of
https://github.com/golang/go
synced 2024-11-06 19:46:20 -07:00
6e267b5cc7
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>
9 lines
161 B
Go
9 lines
161 B
Go
package rank
|
|
|
|
func _() {
|
|
_ = 5 + ; //@complete(" ;", apple, pear)
|
|
y := + 5; //@complete(" +", apple, pear)
|
|
|
|
if 6 == {} //@complete(" {", apple, pear)
|
|
}
|