/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue38125.go
22 строки
333 B
Ian Lance Taylor
test: add test that gccgo failed to compile
29 авг 2020, 02:43
29 авг 2020, 02:43
49bae98
Код
Авторство
О чём код?
// compile // Copyright 2020 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. // gccgo mishandled embedded methods of type aliases. package p type I int func (I) M() {} type T = struct { I } func F() { _ = T.M _ = struct { I }.M }