...

Text file src/cmd/go/testdata/script/mod_string_alias.txt

Documentation: cmd/go/testdata/script

     1[short] skip
     2
     3env GO111MODULE=on
     4
     5go mod init golang.org/issue/27584
     6
     7go build .
     8
     9-- main.go --
    10package main
    11
    12type string = []int
    13
    14func main() {}

View as plain text