/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue66873.go
15 строк
237 B
Matthew Dempsky
cmd/compile/internal/noder: enable type aliases in type checker
15 май 2024, 18:09
15 май 2024, 18:09
31c8150
Код
Авторство
О чём код?
// compile // 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 func f(A) {} type T int type A = T func (A) m() {}