mirror of
https://github.com/golang/go
synced 2024-11-14 14:20:30 -07:00
c0f6144f1b
having an abstract type. R=gri DELTA=11 (11 added, 0 deleted, 0 changed) OCL=22829 CL=22832
13 lines
255 B
Go
13 lines
255 B
Go
// errchk $G $D/$F.go
|
|
|
|
// Copyright 2009 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
|
|
|
|
func main() {
|
|
const a uint64 = 10;
|
|
var b int64 = a;
|
|
}
|