2012-02-16 21:50:37 -07:00
|
|
|
// run
|
2009-05-21 14:46:20 -06:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2012-02-18 23:33:41 -07:00
|
|
|
// Test static interface conversion of interface value nil.
|
2009-05-21 14:46:20 -06:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
2010-09-03 18:36:13 -06:00
|
|
|
type R interface { R() }
|
|
|
|
type RW interface { R(); W() }
|
2009-05-21 14:46:20 -06:00
|
|
|
|
|
|
|
var e interface {}
|
2010-09-03 18:36:13 -06:00
|
|
|
var r R
|
|
|
|
var rw RW
|
2009-05-21 14:46:20 -06:00
|
|
|
|
|
|
|
func main() {
|
2010-09-03 18:36:13 -06:00
|
|
|
r = r
|
|
|
|
r = rw
|
|
|
|
e = r
|
|
|
|
e = rw
|
|
|
|
rw = rw
|
2009-05-21 14:46:20 -06:00
|
|
|
}
|