mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
- Don't branch at `case` - Let `import_spec_list`/`var_declaration` behave like `const_declaration` Fixes #2166
14 lines
128 B
Go
14 lines
128 B
Go
// issue #2166
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func test(ch byte) {
|
|
fmt.Println("hey!")
|
|
switch ch {
|
|
case 'l':
|
|
return
|
|
}
|
|
}
|