blob: ab7a858e54658bce323a1a712b6e9f11b886f004 [file] [log] [blame]
Russ Coxf374dd32014-05-20 11:42:25 -04001// compile
2
Emmanuel Odeke53fd5222016-04-10 14:32:26 -07003// Copyright 2014 The Go Authors. All rights reserved.
Russ Coxf374dd32014-05-20 11:42:25 -04004// 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
9import "fmt"
10
11func main() {
12 var ii interface{} = 5
13 zz, err := ii.(interface{})
14 fmt.Println(zz, err)
15}