1
1
mirror of https://github.com/github/semantic.git synced 2024-12-19 04:41:47 +03:00
semantic/test/fixtures/go/slice-expressions.A.go
2017-11-28 11:10:13 -08:00

10 lines
63 B
Go

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