mirror of
https://github.com/golang/go
synced 2024-11-05 23:36:12 -07:00
12 lines
490 B
Go
12 lines
490 B
Go
|
// errorcheck
|
||
|
|
||
|
// Copyright 2022 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.
|
||
|
|
||
|
// Don't crash in export of oversized integer constant.
|
||
|
|
||
|
package p
|
||
|
|
||
|
const C = 912_345_678_901_234_567_890_123_456_789_012_345_678_901_234_567_890_912_345_678_901_234_567_890_123_456_789_012_345_678_901_234_567_890_912_345_678_901_234_567_890_123_456_789_012_345_678_901_234_567_890_912 // ERROR "constant overflow"
|