github.com/robhaswell/grandperspective-scan@v0.1.0/test/go-go1.7.1/src/cmd/go/testdata/local/sub/sub.go (about)

     1  package sub
     2  
     3  import (
     4  	"fmt"
     5  
     6  	subsub "./sub"
     7  )
     8  
     9  func Hello() {
    10  	fmt.Println("sub.Hello")
    11  	subsub.Hello()
    12  }