...

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

Documentation: cmd/go/testdata/script

     1! go list -m -json all
     2stderr 'go: module example.com/foo appears multiple times in workspace'
     3
     4-- go.work --
     5go 1.18
     6
     7use (
     8        ./a
     9        ./b
    10)
    11-- a/go.mod --
    12module example.com/foo
    13
    14go 1.18
    15
    16-- b/go.mod --
    17module example.com/foo
    18
    19go 1.18

View as plain text