/
githubmirror
/
go
Обзор
Документация
Войти
/
githubmirror
/
go
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixedbugs/issue20232.go
12 строк
375 B
Cuong Manh Le
cmd/compile: do not report error for invalid constant
05 мар 2021, 21:46
05 мар 2021, 21:46
9e6b1fc
Код
Авторство
О чём код?
// errorcheck -d=panic // Copyright 2017 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 const x = 6e5518446744 // ERROR "malformed constant: 6e5518446744" const _ = x * x const _ = 1e-1000000000 const _ = 1e+1000000000 // ERROR "malformed constant: 1e\+1000000000"