/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue34329.go
14 строк
281 B
Robert Griesemer
cmd/compile: remove quoting in favor of clearer prose in error messages
30 май 2024, 22:19
30 май 2024, 22:19
cc95d85
Код
Авторство
О чём код?
// errorcheck -lang=go1.13 // 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 I interface{ M() } type _ interface { I I // ERROR "duplicate method M" }