github.com/epfl-dcsl/gotee@v0.0.0-20200909122901-014b35f5e5e9/test/fixedbugs/issue5841.go (about) 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 }