/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/typeparam/issue47631.go
31 строка
385 B
Cuong Manh Le
test: enable issue47631.go for Unified IR
01 окт 2022, 02:00
01 окт 2022, 02:00
76c1a50
Код
Авторство
О чём код?
// compile // Copyright 2021 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 g[T any]() { type U []T type V []int } type S[T any] struct { } func (s S[T]) m() { type U []T type V []int } func f() { type U []int } type X struct { } func (x X) m() { type U []int }