]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/go.go-torture/execute/const-2.go
Add Go frontend, libgo library, and Go testsuite.
[thirdparty/gcc.git] / gcc / testsuite / go.go-torture / execute / const-2.go
1 package main
2
3 const c = 3;
4
5 func main() {
6 if c != 3 { panic(0) }
7 }