/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue14010.go
15 строк
449 B
Ian Lance Taylor
test: match gofrontend error messages
10 дек 2020, 21:34
10 дек 2020, 21:34
6d2b335
Код
Авторство
О чём код?
// errorcheck // Copyright 2016 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. // Verify that built-in types don't get printed with // (empty) package qualification. package main func main() { true = false // ERROR "cannot assign to true|invalid left hand side" byte = 0 // ERROR "not an expression|invalid left hand side|invalid use of type" }