mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 11:40:04 +08:00
20 lines
214 B
Go
Vendored
20 lines
214 B
Go
Vendored
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
|
|
)
|
|
}
|