/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/bug217.go
16 строк
337 B
Robert Griesemer
cmd/compile: be slightly more tolerant in case of certain syntax errors
24 мар 2017, 23:07
24 мар 2017, 23:07
5e95404
Код
Авторство
О чём код?
// 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. // Used to crash // https://golang.org/issue/204 package main func () x() // ERROR "no receiver" func (a b, c d) x() // ERROR "multiple receiver" type b int