mirror of
https://github.com/golang/go
synced 2024-11-05 20:36:10 -07:00
38cecb2290
This test case already works with GOEXPERIMENT=unified, and it never worked with Go 1.18 or Go 1.19. So this CL simply adds a regress test to make sure it continues working. Fixes #55101. Change-Id: I7e06bfdc136ce124f65cdcf02d20a1050b841d42 Reviewed-on: https://go-review.googlesource.com/c/go/+/431455 Run-TryBot: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
17 lines
436 B
Go
17 lines
436 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 p
|
|
|
|
func F() *Cache[error] { return nil }
|
|
|
|
type Cache[T any] struct{ l *List[entry[T]] }
|
|
type entry[T any] struct{ value T }
|
|
type List[T any] struct{ len int }
|
|
|
|
func (c *Cache[V]) Len() int { return c.l.Len() }
|
|
func (l *List[T]) Len() int { return l.len }
|