2021-03-04 08:27:41 -07:00
|
|
|
// errorcheck -d=panic
|
2010-07-26 18:34:17 -06:00
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
2010-07-26 18:34:17 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Used to crash; issue 961.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
type ByteSize float64
|
2021-03-04 08:27:41 -07:00
|
|
|
|
2010-07-26 18:34:17 -06:00
|
|
|
const (
|
2021-03-04 08:27:41 -07:00
|
|
|
_ = iota // ignore first value by assigning to blank identifier
|
|
|
|
KB ByteSize = 1 << (10 * X) // ERROR "undefined"
|
2010-07-26 18:34:17 -06:00
|
|
|
)
|