github.com/zach-klippenstein/go@v0.0.0-20150108044943-fcfbeb3adf58/test/fixedbugs/issue6131.go (about) 1 // compile 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 6131: missing typecheck after reducing 8 // n%1 == 0 to a constant value. 9 10 package main 11 12 func isGood(n int) bool { 13 return n%1 == 0 14 } 15 16 func main() { 17 if !isGood(256) { 18 panic("!isGood") 19 } 20 }