aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/go.go-torture/execute/const-1.go
blob: 2292692ea23787a5ae377f5eb81179e6f24bd38b (plain)
1
2
3
4
5
6
package main

func main() {
  const c = 2;
  if c != 2 { panic(0) }
}