delve/_fixtures/issue528.go

13 lines
138 B
Go
Raw Normal View History

package main
import (
"fmt"
"github.com/peterh/liner"
)
func main() {
line := liner.NewLiner()
line.Close()
fmt.Printf("test\n")
}