1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 13:00:04 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/go/multiple-vars.go

20 lines
214 B
Go

package main
var (
thing = 1
thingTwo = 2
) // <-- This paren should be at 0 instead of indented
var (
thing = 1
thingTwo = 2
)
func main() {
// It should be
var (
thing = 1
thingTwo = 2
)
}