mirror of
https://github.com/golang/go
synced 2024-11-05 20:26:13 -07:00
ccf84a9750
If a function type has no type parameters, note when it is visited and do not recur. (It must be visited at least once because of closures and their associated types occurring in a generic context). Fixes #51832. Change-Id: Iee20612ffd0a03b838b9e59615f4a0206fc8940b Reviewed-on: https://go-review.googlesource.com/c/go/+/406714 Reviewed-by: Keith Randall <khr@google.com>
26 lines
359 B
Go
26 lines
359 B
Go
// compile
|
|
|
|
// Copyright 2022 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
|
|
|
|
type F func() F
|
|
|
|
func do[T any]() F {
|
|
return nil
|
|
}
|
|
|
|
type G[T any] func() G[T]
|
|
|
|
//go:noinline
|
|
func dog[T any]() G[T] {
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
do[int]()
|
|
dog[int]()
|
|
}
|