1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 09:50:04 +08:00
SpaceVim/bundle/nvim-treesitter-0.9.1/tests/indent/go/issue-3288.go

23 lines
236 B
Go

package main
func correct(word string) {
switch word {
} // <---
select {
} // <---
}
func test() {
cases := []struct {
first, second string
} {
{"Hello", "World"},
}
for range cases {
println("random stuff")
}
}