/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/syntax/semi7.go
12 строк
337 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 2010 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 func main() { if x { } // GCCGO_ERROR "undefined" else { } // ERROR "unexpected semicolon or newline before .?else.?|unexpected keyword else" }