blob: b6851e1bca041f91e06a59d06532ce1aad068c9c [file] [log] [blame]
Rémy Oudompheng2ece2f52012-02-18 22:15:42 +01001// run
Russ Coxd1b14a62010-01-24 22:42:18 -08002
3// Copyright 2010 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
9func main() {
10 const (
11 Delta = 100 * 1e6
12 Count = 10
13 )
14 _ = int64(Delta * Count)
15 var i interface{} = Count
16 j := i.(int)
17 if j != Count {
Rob Pike325cf8e2010-03-24 16:46:53 -070018 println("j=", j)
19 panic("fail")
Russ Coxd1b14a62010-01-24 22:42:18 -080020 }
21}