blob: 0fe24c09564df019b8bce6f705f8ea6cb6bbb4f8 [file] [log] [blame]
Dan Willemsend2797482017-07-26 13:13:13 -07001// errorcheck
2
3// Copyright 2017 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// Verify that append arguments requirements are enforced by the
8// compiler.
9
10package main
11
12func main() {
13
14 s := make([]int, 8)
15
16 _ = append() // ERROR "missing arguments to append"
17 _ = append(s...) // ERROR "cannot use ... on first argument"
18 _ = append(s, 2, s...) // ERROR "too many arguments to append"
19
Dan Willemsenc7413322018-08-27 23:21:26 -070020 _ = append(s, make([]int, 0)) // ERROR "cannot use make.* as type int in append"
21 _ = append(s, make([]int, -1)...) // ERROR "negative len argument in make"
Dan Willemsend2797482017-07-26 13:13:13 -070022}