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

const c = 3;

func main() {
  if c != 3 { panic(0) }
}