]> Cypherpunks.ru repositories - gostls13.git/blob - test/fixedbugs/issue5841.go
all: make copyright headers consistent with one space after period
[gostls13.git] / test / fixedbugs / issue5841.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 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 }