Text file src/cmd/go/testdata/mod/example.com_deprecated_a_v1.9.0.txt

     1  -- .info --
     2  {"Version":"v1.9.0"}
     3  -- .mod --
     4  // Deprecated: in example.com/deprecated/a@v1.9.0
     5  module example.com/deprecated/a
     6  
     7  go 1.17
     8  -- go.mod --
     9  // Deprecated: in example.com/deprecated/a@v1.9.0
    10  module example.com/deprecated/a
    11  
    12  go 1.17
    13  -- a.go --
    14  package a
    15  
    16  -- cmd/a/a.go --
    17  package main
    18  
    19  import "fmt"
    20  
    21  func main() { fmt.Println("a@v1.9.0") }
    22  

View as plain text