1
1
mirror of https://github.com/github/semantic.git synced 2024-12-03 00:16:52 +03:00
semantic/test/fixtures/go/slice-expressions.B.go
2017-11-28 11:10:13 -08:00

10 lines
65 B
Go

package main
func main() {
a[1:]
b[:2]
c[1:2]
d[2:1:4]
f[1:2]
}