/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue11610.go
16 строк
463 B
Robert Griesemer
cmd/compile: better error message when offending/missing token is a keyword
14 ноя 2024, 05:14
14 ноя 2024, 05:14
2eac154
Код
Авторство
О чём код?
// errorcheck // Copyright 2015 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. // Test an internal compiler error on ? symbol in declaration // following an empty import. package a var? // ERROR "invalid character U\+003F '\?'|invalid character 0x3f in input file" var x int // ERROR "unexpected keyword var|expected identifier|expected type" func main() { }