/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/interface/embed3.dir/embed0.go
21 строка
305 B
Dmitry Vyukov
test: add tests for runtime.itab.init
06 ноя 2019, 12:09
06 ноя 2019, 12:09
0c5d545
Код
Авторство
О чём код?
// Copyright 2019 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 I1 interface { Foo(int) } type I2 interface { foo(int) } type M1 int func (M1) foo() {} type M2 int func (M2) foo(int) {}