1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00
semantic/test/fixtures/go/corpus/slice-expressions.B.go
2018-04-18 13:33:17 -07:00

10 lines
65 B
Go

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