nvim-treesitter/tests/indent/go/switch.go

15 lines
128 B
Go
Raw Normal View History

// issue #2166
package main
import (
"fmt"
)
func test(ch byte) {
fmt.Println("hey!")
switch ch {
case 'l':
return
}
}