gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/issue-1368.go (about) 1 package main 2 3 const dollar byte = 36 4 5 func main() { 6 var c byte = 36 7 switch true { 8 case c == dollar: 9 println("ok") 10 default: 11 println("not ok") 12 } 13 } 14 15 // Output: 16 // ok