/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/bug388.go
29 строк
635 B
Robert Griesemer
go/parser, syntax: better error message for parameter missing type
01 окт 2024, 01:04
01 окт 2024, 01:04
bae2e96
Код
Авторство
О чём код?
// errorcheck // 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. // Issue 2231 package main import "runtime" func foo(runtime.UintType, i int) { // ERROR "cannot declare name runtime.UintType|missing parameter name|undefined identifier" println(i, runtime.UintType) // GCCGO_ERROR "undefined identifier" } func qux() { var main.i // ERROR "unexpected [.]|expected type" println(main.i) } func corge() { var foo.i int // ERROR "unexpected [.]|expected type" println(foo.i) } func main() { foo(42,43) bar(1969) }