Source file test/typeparam/issue50121b.dir/a.go
1 // Copyright 2022 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package a 6 7 type Integer interface { 8 ~int | ~int8 | ~int16 | ~int32 | ~int64 | 9 ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr 10 } 11 12 type Builder[T Integer] struct{} 13 14 func (r Builder[T]) New() T { 15 return T(42) 16 } 17