Text file src/cmd/go/testdata/mod/example.com_undeprecated_v1.0.0.txt

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

View as plain text