/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/bug322.dir/lib.go
15 строк
263 B
Anthony Martin
gc: relax assignability of method receivers
25 май 2011, 03:48
25 май 2011, 03:48
0b209b3
Код
Авторство
О чём код?
// Copyright 2011 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 lib type T struct { x int // non-exported field } func (t T) M() { } func (t *T) PM() { }