2014-05-12 09:59:55 -06:00
|
|
|
// run
|
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
2014-05-12 09:59:55 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
type T struct {
|
|
|
|
io.Closer
|
|
|
|
}
|
|
|
|
|
|
|
|
func f1() {
|
2014-09-05 14:51:45 -06:00
|
|
|
// The 5 here and below depends on the number of internal runtime frames
|
2014-05-12 09:59:55 -06:00
|
|
|
// that sit between a deferred function called during panic and
|
|
|
|
// the original frame. If that changes, this test will start failing and
|
|
|
|
// the number here will need to be updated.
|
2014-09-05 14:51:45 -06:00
|
|
|
defer checkLine(5)
|
2014-05-12 09:59:55 -06:00
|
|
|
var t *T
|
|
|
|
var c io.Closer = t
|
|
|
|
c.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func f2() {
|
2014-09-05 14:51:45 -06:00
|
|
|
defer checkLine(5)
|
2014-05-12 09:59:55 -06:00
|
|
|
var t T
|
|
|
|
var c io.Closer = t
|
|
|
|
c.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
f1()
|
|
|
|
f2()
|
|
|
|
}
|
|
|
|
|
|
|
|
func checkLine(n int) {
|
|
|
|
if err := recover(); err == nil {
|
|
|
|
panic("did not panic")
|
|
|
|
}
|
2014-05-14 15:39:15 -06:00
|
|
|
var file string
|
|
|
|
var line int
|
|
|
|
for i := 1; i <= n; i++ {
|
|
|
|
_, file, line, _ = runtime.Caller(i)
|
|
|
|
if file != "<autogenerated>" || line != 1 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return
|
2014-05-12 09:59:55 -06:00
|
|
|
}
|
2014-05-14 15:39:15 -06:00
|
|
|
panic(fmt.Sprintf("expected <autogenerated>:1 have %s:%d", file, line))
|
2014-05-12 09:59:55 -06:00
|
|
|
}
|