Commit 86e35a96 authored by Robert Griesemer's avatar Robert Griesemer

go/typechecker: fix build

R=rsc
CC=golang-dev
https://golang.org/cl/4278043
parent 7664ec39
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
package P1 package P1
const ( const (
c1 /* ERROR "missing initializer" */ c1 = 0
c2 int = 0 c2 int = 0
c3, c4 = 0 c3, c4 = 0
) )
...@@ -7,5 +7,5 @@ ...@@ -7,5 +7,5 @@
package P4 package P4
const ( const (
c0 /* ERROR "missing initializer" */ c0 = 0
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment