]> Cypherpunks.ru repositories - gostls13.git/blob - test/fixedbugs/issue28079c.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / fixedbugs / issue28079c.go
1 // errorcheck
2
3 // Copyright 2018 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 // Non-Go-constant but constant values aren't ok for shifts.
8
9 package p
10
11 import "unsafe"
12
13 func f() {
14         _ = complex(1<<uintptr(unsafe.Pointer(nil)), 0) // ERROR "invalid operation: shifted operand 1 \(type float64\) must be integer|non-integer type for left operand of shift"
15 }