/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue65778.go
13 строк
252 B
Cuong Manh Le
cmd/compile: add missing Unalias call when writing type alias
01 мар 2024, 04:40
01 мар 2024, 04:40
cda1e40
Код
Авторство
О чём код?
// compile -godebug gotypesalias=1 // Copyright 2024 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 type A = int type T[P any] *A var _ T[int]