Home | History | Annotate | Download | only in fixedbugs
      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 5841: 8g produces invalid CMPL $0, $0.
      8 // Similar to issue 5002, used to fail at link time.
      9 
     10 package main
     11 
     12 func main() {
     13 	var y int
     14 	if y%1 == 0 {
     15 	}
     16 }
     17