mirror of
https://github.com/golang/go
synced 2024-11-02 15:37:45 +00:00
749720a036
Fixes #13263. Change-Id: Ie1cafc62b6bfe6c5381c35d9a95563267b4cc9b0 Reviewed-on: https://go-review.googlesource.com/33970 Reviewed-by: Robert Griesemer <gri@golang.org> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com> Run-TryBot: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
15 lines
252 B
Go
15 lines
252 B
Go
// compile
|
|
|
|
// 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.
|
|
|
|
package b
|
|
|
|
var (
|
|
x uint
|
|
y = x
|
|
z = uintptr(y)
|
|
a = uint32(y)
|
|
b = uint64(y)
|
|
)
|