mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:08 +00:00
732e2cd746
Fixes #13559. Change-Id: I6fe8b5083192e8eb6c1b3ca1919fde81a00ccb7e Reviewed-on: https://go-review.googlesource.com/17695 Run-TryBot: Robert Griesemer <gri@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Alan Donovan <adonovan@google.com>
11 lines
444 B
Go
11 lines
444 B
Go
// errorcheck
|
|
|
|
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package p
|
|
|
|
var _ = int8(4) * 300 // ERROR "constant 300 overflows int8" "constant 1200 overflows int8"
|
|
var _ = complex64(1) * 1e200 // ERROR "constant 1e\+200 overflows complex64"
|
|
var _ = complex128(1) * 1e500 // ERROR "constant 1e\+500 overflows complex128"
|