/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/bug121.go
17 строк
321 B
Robert Griesemer
cmd/compile/internal/syntax: remove code dealing with multiple method names
30 мар 2022, 21:02
30 мар 2022, 21:02
a7e76b8
Код
Авторство
О чём код?
// errorcheck // Copyright 2009 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 main type T func() type I interface { f, g (); // ERROR "unexpected comma" } type J interface { h T; // ERROR "syntax|signature" }