mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-07 05:50:04 -04:00
15 lines
128 B
Go
15 lines
128 B
Go
|
|
// issue #2166
|
||
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
)
|
||
|
|
|
||
|
|
func test(ch byte) {
|
||
|
|
fmt.Println("hey!")
|
||
|
|
switch ch {
|
||
|
|
case 'l':
|
||
|
|
return
|
||
|
|
}
|
||
|
|
}
|