
The repository is being switched from the personal account github.com/derekparker/delve to the organization account github.com/go-delve/delve. This patch updates imports and docs, while preserving things which should not be changed such as my name in the CHANGELOG and in TODO comments.
16 lines
317 B
Go
16 lines
317 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/go-delve/delve/_fixtures/internal/dir.io"
|
|
"github.com/go-delve/delve/_fixtures/internal/dir.io/io.io"
|
|
"runtime"
|
|
)
|
|
|
|
func main() {
|
|
var iface interface{} = &dirio.SomeType{}
|
|
var iface2 interface{} = &ioio.SomeOtherType{}
|
|
runtime.Breakpoint()
|
|
fmt.Println(iface, iface2)
|
|
}
|