2022-02-28 22:32:19 +00:00
|
|
|
// errorcheck
|
2020-10-22 22:32:05 +00:00
|
|
|
|
|
|
|
// Copyright 2020 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.
|
|
|
|
|
|
|
|
// Basic type parameter list type-checking (not syntax) errors.
|
|
|
|
|
|
|
|
package tparam1
|
|
|
|
|
2021-09-22 18:26:40 +00:00
|
|
|
// The predeclared identifier "any" may be used in place of interface{}.
|
|
|
|
var _ any
|
2021-09-30 03:56:36 +00:00
|
|
|
|
2021-09-22 18:26:40 +00:00
|
|
|
func _(_ any)
|
2021-09-30 03:56:36 +00:00
|
|
|
|
2021-09-22 18:26:40 +00:00
|
|
|
type _[_ any] struct{}
|
2020-10-22 22:32:05 +00:00
|
|
|
|
|
|
|
const N = 10
|
|
|
|
|
|
|
|
type (
|
2021-07-28 20:39:30 +00:00
|
|
|
_ []struct{} // slice
|
|
|
|
_ [N]struct{} // array
|
|
|
|
_[T any] struct{}
|
|
|
|
_[T, T any] struct{} // ERROR "T redeclared"
|
|
|
|
_[T1, T2 any, T3 any] struct{}
|
2020-10-22 22:32:05 +00:00
|
|
|
)
|
|
|
|
|
2021-09-22 18:26:40 +00:00
|
|
|
func _[T any]() {}
|
|
|
|
func _[T, T any]() {} // ERROR "T redeclared"
|
2021-08-09 17:53:43 +00:00
|
|
|
func _[T1, T2 any](x T1) T2 { panic(0) }
|
2020-10-22 22:32:05 +00:00
|
|
|
|
|
|
|
// Type parameters are visible from opening [ to end of function.
|
|
|
|
type C interface{}
|
|
|
|
|
2021-09-22 18:26:40 +00:00
|
|
|
func _[T interface{}]() {}
|
|
|
|
func _[T C]() {}
|
2021-09-30 03:56:36 +00:00
|
|
|
func _[T struct{}]() {} // ok if #48424 is accepted
|
2021-08-09 17:53:43 +00:00
|
|
|
func _[T interface{ m() T }]() {}
|
2020-10-22 22:32:05 +00:00
|
|
|
func _[T1 interface{ m() T2 }, T2 interface{ m() T1 }]() {
|
2021-07-28 20:39:30 +00:00
|
|
|
var _ T1
|
2020-10-22 22:32:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(gri) expand this
|