2008-10-08 10:21:57 -06:00
|
|
|
// $G $D/$F.go && $L $F.$A && ! ./$A.out
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
2009-01-16 17:12:14 -07:00
|
|
|
export type S struct
|
2008-10-08 10:21:57 -06:00
|
|
|
|
2009-01-16 17:12:14 -07:00
|
|
|
export type I interface {
|
2008-10-08 10:21:57 -06:00
|
|
|
Foo()
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
var s *S;
|
|
|
|
var i I;
|
2009-01-08 19:06:06 -07:00
|
|
|
var e interface {};
|
|
|
|
e = s;
|
|
|
|
i = e;
|
2008-10-08 10:21:57 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// hide S down here to avoid static warning
|
2009-01-16 17:12:14 -07:00
|
|
|
export type S struct {
|
2008-10-08 10:21:57 -06:00
|
|
|
}
|