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