]> Cypherpunks.ru repositories - gostls13.git/blobdiff - test/makemap.go
cmd/compile/internal/inline: score call sites exposed by inlines
[gostls13.git] / test / makemap.go
index a60f5b5ee50059397ad27fd9f2b08dd2a5875809..f63e5b4b6ace97dc2f21c600188bb8fde78d36bd 100644 (file)
@@ -16,13 +16,13 @@ var sink T
 
 func main() {
        sink = make(T, -1)            // ERROR "negative size argument in make.*|must not be negative"
-       sink = make(T, uint64(1<<63)) // ERROR "size argument too large in make.*|out of bounds"
+       sink = make(T, uint64(1<<63)) // ERROR "size argument too large in make.*|overflows int"
 
        // Test that errors are emitted at call sites, not const declarations
        const x = -1
        sink = make(T, x) // ERROR "negative size argument in make.*|must not be negative"
        const y = uint64(1 << 63)
-       sink = make(T, y) // ERROR "size argument too large in make.*|out of bounds"
+       sink = make(T, y) // ERROR "size argument too large in make.*|overflows int"
 
        sink = make(T, 0.5) // ERROR "constant 0.5 truncated to integer|truncated to int"
        sink = make(T, 1.0)