/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue53982.go
25 строк
359 B
Cuong Manh Le
cmd/compile: fix wrong typeparams for selector expr with embedded generic type
11 авг 2022, 22:05
11 авг 2022, 22:05
62654df
Код
Авторство
О чём код?
// build // 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 S[K, V any] struct { E[V] } type E[K any] struct{} func (e E[K]) M() E[K] { return e } func G[K, V any](V) { _ = (*S[K, V]).M } func main() { G[*int](new(int)) }