1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 09:15:01 +03:00
semantic/test/fixtures/go/switch-statements.A.go
2017-11-15 10:57:12 -08:00

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()
}
}