mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
22 lines
236 B
Go
22 lines
236 B
Go
package main
|
|
|
|
func correct(word string) {
|
|
switch word {
|
|
|
|
} // <---
|
|
select {
|
|
|
|
} // <---
|
|
}
|
|
|
|
func test() {
|
|
cases := []struct {
|
|
first, second string
|
|
} {
|
|
{"Hello", "World"},
|
|
}
|
|
|
|
for range cases {
|
|
println("random stuff")
|
|
}
|
|
}
|