1
1
mirror of https://github.com/github/semantic.git synced 2024-12-20 05:11:44 +03:00
semantic/test/fixtures/go/corpus/slice-expressions.B.go

10 lines
65 B
Go
Raw Normal View History

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