Black Lives Matter. Support the Equal Justice Initiative.

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

Documentation: cmd/go/testdata/script

     1  cd rundir
     2  
     3  ! go run x.go sub/sub.go
     4  stderr 'named files must all be in one directory; have ./ and sub/'
     5  ! go run sub/sub.go x.go
     6  stderr 'named files must all be in one directory; have sub/ and ./'
     7  
     8  -- rundir/sub/sub.go --
     9  package main
    10  -- rundir/x.go --
    11  package main
    12  

View as plain text