2012-02-16 21:50:37 -07:00
|
|
|
// run
|
2008-10-08 10:21:57 -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 that interface conversion fails when method is missing.
|
2009-05-12 17:09:47 -06:00
|
|
|
|
2008-10-08 10:21:57 -06:00
|
|
|
package main
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type I interface {
|
2008-10-08 10:21:57 -06:00
|
|
|
Foo()
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2011-09-26 17:35:21 -06:00
|
|
|
shouldPanic(p1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func p1() {
|
2010-09-03 18:36:13 -06:00
|
|
|
var s *S
|
|
|
|
var i I
|
2013-08-18 19:53:34 -06:00
|
|
|
var e interface{}
|
2010-09-03 18:36:13 -06:00
|
|
|
e = s
|
|
|
|
i = e.(I)
|
|
|
|
_ = i
|
2008-10-08 10:21:57 -06:00
|
|
|
}
|
|
|
|
|
2013-08-18 19:53:34 -06:00
|
|
|
type S struct{}
|
|
|
|
|
|
|
|
func (s *S) _() {}
|
|
|
|
|
2011-09-26 17:35:21 -06:00
|
|
|
func shouldPanic(f func()) {
|
|
|
|
defer func() {
|
|
|
|
if recover() == nil {
|
|
|
|
panic("function should panic")
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
f()
|
|
|
|
}
|