1
1
mirror of https://github.com/github/semantic.git synced 2025-01-01 19:55:34 +03:00
semantic/test/fixtures/go/corpus/slice-expressions.A.go

10 lines
63 B
Go
Raw Normal View History

2017-11-28 22:10:13 +03:00
package main
func main() {
a[2:]
b[:3]
c[:]
d[1:2:3]
e[1:2]
}