mirror of
https://github.com/golang/go
synced 2024-11-12 07:10:22 -07:00
5163d50c7d
bug228.go:11:25: error: invalid use of ‘...’ bug228.go:13:13: error: ‘...’ only permits one name bug228.go:15:20: error: ‘...’ must be last parameter bug228.go:17:7: error: expected type bug228.go:19:8: error: expected type R=rsc CC=golang-dev https://golang.org/cl/196077
20 lines
464 B
Go
20 lines
464 B
Go
// errchk $G -e $D/$F.go
|
|
|
|
// 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.
|
|
|
|
package main
|
|
|
|
func f(x int, y ...) // ok
|
|
|
|
func g(x int, y float) (...) // ERROR "[.][.][.]"
|
|
|
|
func h(x, y ...) // ERROR "[.][.][.]"
|
|
|
|
func i(x int, y ..., z float) // ERROR "[.][.][.]"
|
|
|
|
var x ...; // ERROR "[.][.][.]|syntax|type"
|
|
|
|
type T ...; // ERROR "[.][.][.]|syntax|type"
|