/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue24693.dir/a.go
11 строк
246 B
Matthew Dempsky
cmd/compile: sort method sets using package height
10 апр 2018, 03:06
10 апр 2018, 03:06
49ed4cb
Код
Авторство
О чём код?
// Copyright 2018 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 a type T struct{} func (T) m() { println("FAIL") } type I interface{ m() }