2012-02-17 04:48:57 +00:00
|
|
|
// errorcheck
|
2009-03-13 02:04:38 +00:00
|
|
|
|
|
|
|
// Copyright 2009 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.
|
|
|
|
|
2012-02-19 02:19:43 +00:00
|
|
|
// Verify overflow is detected when using numeric constants.
|
|
|
|
// Does not compile.
|
|
|
|
|
2009-03-13 02:04:38 +00:00
|
|
|
package main
|
|
|
|
|
2013-02-02 04:10:02 +00:00
|
|
|
import "unsafe"
|
|
|
|
|
2011-01-20 04:09:00 +00:00
|
|
|
type I interface{}
|
|
|
|
|
2009-03-13 02:04:38 +00:00
|
|
|
const (
|
|
|
|
// assume all types behave similarly to int8/uint8
|
2011-01-20 04:09:00 +00:00
|
|
|
Int8 int8 = 101
|
|
|
|
Minus1 int8 = -1
|
|
|
|
Uint8 uint8 = 102
|
2012-02-19 05:12:31 +00:00
|
|
|
Const = 103
|
2009-03-13 02:04:38 +00:00
|
|
|
|
2011-01-20 04:09:00 +00:00
|
|
|
Float32 float32 = 104.5
|
|
|
|
Float64 float64 = 105.5
|
2012-02-19 05:12:31 +00:00
|
|
|
ConstFloat = 106.5
|
2011-01-20 04:09:00 +00:00
|
|
|
Big float64 = 1e300
|
2009-03-13 02:04:38 +00:00
|
|
|
|
2010-09-04 00:36:13 +00:00
|
|
|
String = "abc"
|
2011-01-20 04:09:00 +00:00
|
|
|
Bool = true
|
2009-03-13 02:04:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-12-01 05:38:49 +00:00
|
|
|
a1 = Int8 * 100 // ERROR "overflow|cannot convert"
|
2011-01-20 04:09:00 +00:00
|
|
|
a2 = Int8 * -1 // OK
|
2020-12-01 05:38:49 +00:00
|
|
|
a3 = Int8 * 1000 // ERROR "overflow|cannot convert"
|
|
|
|
a4 = Int8 * int8(1000) // ERROR "overflow|cannot convert"
|
|
|
|
a5 = int8(Int8 * 1000) // ERROR "overflow|cannot convert"
|
|
|
|
a6 = int8(Int8 * int8(1000)) // ERROR "overflow|cannot convert"
|
|
|
|
a7 = Int8 - 2*Int8 - 2*Int8 // ERROR "overflow|cannot convert"
|
|
|
|
a8 = Int8 * Const / 100 // ERROR "overflow|cannot convert"
|
2011-01-20 04:09:00 +00:00
|
|
|
a9 = Int8 * (Const / 100) // OK
|
2009-03-13 02:04:38 +00:00
|
|
|
|
2020-12-01 05:38:49 +00:00
|
|
|
b1 = Uint8 * Uint8 // ERROR "overflow|cannot convert"
|
|
|
|
b2 = Uint8 * -1 // ERROR "overflow|cannot convert"
|
2012-02-19 05:12:31 +00:00
|
|
|
b3 = Uint8 - Uint8 // OK
|
2020-12-01 05:38:49 +00:00
|
|
|
b4 = Uint8 - Uint8 - Uint8 // ERROR "overflow|cannot convert"
|
|
|
|
b5 = uint8(^0) // ERROR "overflow|cannot convert"
|
2012-03-01 01:39:02 +00:00
|
|
|
b5a = int64(^0) // OK
|
2012-02-19 05:12:31 +00:00
|
|
|
b6 = ^uint8(0) // OK
|
2012-03-01 01:39:02 +00:00
|
|
|
b6a = ^int64(0) // OK
|
2020-12-01 05:38:49 +00:00
|
|
|
b7 = uint8(Minus1) // ERROR "overflow|cannot convert"
|
|
|
|
b8 = uint8(int8(-1)) // ERROR "overflow|cannot convert"
|
|
|
|
b8a = uint8(-1) // ERROR "overflow|cannot convert"
|
2012-02-19 05:12:31 +00:00
|
|
|
b9 byte = (1 << 10) >> 8 // OK
|
2020-12-01 05:38:49 +00:00
|
|
|
b10 byte = (1 << 10) // ERROR "overflow|cannot convert"
|
|
|
|
b11 byte = (byte(1) << 10) >> 8 // ERROR "overflow|cannot convert"
|
|
|
|
b12 byte = 1000 // ERROR "overflow|cannot convert"
|
|
|
|
b13 byte = byte(1000) // ERROR "overflow|cannot convert"
|
|
|
|
b14 byte = byte(100) * byte(100) // ERROR "overflow|cannot convert"
|
|
|
|
b15 byte = byte(100) * 100 // ERROR "overflow|cannot convert"
|
|
|
|
b16 byte = byte(0) * 1000 // ERROR "overflow|cannot convert"
|
2012-02-19 05:12:31 +00:00
|
|
|
b16a byte = 0 * 1000 // OK
|
2020-12-01 05:38:49 +00:00
|
|
|
b17 byte = byte(0) * byte(1000) // ERROR "overflow|cannot convert"
|
2012-02-19 05:12:31 +00:00
|
|
|
b18 byte = Uint8 / 0 // ERROR "division by zero"
|
2009-03-13 02:04:38 +00:00
|
|
|
|
2012-02-19 05:12:31 +00:00
|
|
|
c1 float64 = Big
|
2020-12-01 05:38:49 +00:00
|
|
|
c2 float64 = Big * Big // ERROR "overflow|cannot convert"
|
|
|
|
c3 float64 = float64(Big) * Big // ERROR "overflow|cannot convert"
|
|
|
|
c4 = Big * Big // ERROR "overflow|cannot convert"
|
2012-02-19 05:12:31 +00:00
|
|
|
c5 = Big / 0 // ERROR "division by zero"
|
2019-03-27 19:15:47 +00:00
|
|
|
c6 = 1000 % 1e3 // ERROR "invalid operation|expected integer type"
|
2009-03-13 02:04:38 +00:00
|
|
|
)
|
|
|
|
|
2010-09-04 00:36:13 +00:00
|
|
|
func f(int)
|
2009-03-13 02:04:38 +00:00
|
|
|
|
|
|
|
func main() {
|
2011-01-20 04:09:00 +00:00
|
|
|
f(Int8) // ERROR "convert|wrong type|cannot"
|
|
|
|
f(Minus1) // ERROR "convert|wrong type|cannot"
|
|
|
|
f(Uint8) // ERROR "convert|wrong type|cannot"
|
|
|
|
f(Const) // OK
|
|
|
|
f(Float32) // ERROR "convert|wrong type|cannot"
|
|
|
|
f(Float64) // ERROR "convert|wrong type|cannot"
|
|
|
|
f(ConstFloat) // ERROR "truncate"
|
|
|
|
f(ConstFloat - 0.5) // OK
|
|
|
|
f(Big) // ERROR "convert|wrong type|cannot"
|
|
|
|
f(String) // ERROR "convert|wrong type|cannot|incompatible"
|
|
|
|
f(Bool) // ERROR "convert|wrong type|cannot|incompatible"
|
2009-03-13 02:04:38 +00:00
|
|
|
}
|
2010-09-11 19:47:56 +00:00
|
|
|
|
2020-12-01 05:38:49 +00:00
|
|
|
const ptr = nil // ERROR "const.*nil|not constant"
|
2013-12-13 01:18:12 +00:00
|
|
|
const _ = string([]byte(nil)) // ERROR "is not a? ?constant"
|
|
|
|
const _ = uintptr(unsafe.Pointer((*int)(nil))) // ERROR "is not a? ?constant"
|
2020-12-01 05:38:49 +00:00
|
|
|
const _ = unsafe.Pointer((*int)(nil)) // ERROR "cannot be nil|invalid constant type|is not a constant|not constant"
|
|
|
|
const _ = (*int)(nil) // ERROR "cannot be nil|invalid constant type|is not a constant|not constant"
|