delve/_fixtures/issue528.go
aarzilli a1ac17f16c service/test: Added test for issue #528
This issue is fixed by go 1.7, the test will only run on newer versions
of the compiler.
2016-05-18 09:07:19 +02:00

13 lines
138 B
Go

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