nvim-treesitter/tests/indent/go/issue-2369.go
2022-02-05 18:54:55 +01:00

14 lines
290 B
Go

// https://github.com/nvim-treesitter/nvim-treesitter/issues/2369
package main
import "fmt"
func goodIndent(param string) {
fmt.Println("typing o here works as expected")
}
func badIndent(
param string, // this is the difference
) {
fmt.Println("typing o here triggers bad indent")
}