mirror of
https://github.com/github/semantic.git
synced 2024-12-01 09:15:01 +03:00
12 lines
121 B
Go
12 lines
121 B
Go
package main
|
|
|
|
func main() {
|
|
switch { case x < y: f1()
|
|
case x < z:
|
|
// comment 1
|
|
g()
|
|
// comment 2
|
|
case x == 4: h()
|
|
}
|
|
}
|