Source file src/cmd/go/internal/imports/testdata/test/test.go

     1  package test
     2  
     3  import (
     4  	"cmd/go/internal/imports/testdata/test/child"
     5  	"fmt"
     6  )
     7  
     8  func F() {
     9  	fmt.Println(child.V)
    10  }
    11  

View as plain text