/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue65893.go
16 строк
269 B
Cuong Manh Le
cmd/compile: add test case for using Alias types
16 май 2024, 04:45
16 май 2024, 04:45
8ce2fed
Код
Авторство
О чём код?
// 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 type ( s = struct{ f func(s1) } s1 = struct{ i I } ) type I interface { S() *s }