libiberty: Fix comment typos
[official-gcc.git] / gcc / testsuite / go.test / test / fixedbugs / issue9634.go
blob2d5aae4a30e6c4c32b3c65562e79afd86bac342f
1 // errorcheck
3 // Copyright 2015 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.
7 // Issue 9634: Structs are incorrectly unpacked when passed as an argument
8 // to append.
10 package main
12 func main() {
13 s := struct{
14 t []int
15 u int
16 }{}
17 _ = append(s, 0) // ERROR "must be a slice|must be slice"