gc: const debug bool = false
R=ken2
CC=golang-dev
https://golang.org/cl/186232
diff --git a/test/fixedbugs/bug238.go b/test/fixedbugs/bug238.go
index 3ceacf51..83054fb 100644
--- a/test/fixedbugs/bug238.go
+++ b/test/fixedbugs/bug238.go
@@ -15,5 +15,8 @@
const e func() = 5 // ERROR "convert|wrong|incompatible"
const f struct{} = 6 // ERROR "convert|wrong|incompatible"
const g interface{} = 7 // ERROR "constant|wrong|incompatible"
+const h bool = false
+const i int = 2
+const j float = 5
func main() { println(a, b, c, d, e, f, g) }