Source file test/fixedbugs/issue5002.go
1 // build 2 3 // Copyright 2013 The Go Authors. All rights reserved. 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file. 6 7 // Issue 5002: 8g produces invalid CMPL $0, $0. 8 // Used to fail at link time. 9 10 package main 11 12 func main() { 13 var y int64 14 if y%1 == 0 { 15 } 16 } 17