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

     1  [!cgo] skip
     2  [!race] skip
     3  
     4  go list -race -deps foo
     5  stdout syscall
     6  
     7  -- go.mod --
     8  module foo
     9  
    10  go 1.16
    11  -- foo.go --
    12  package foo
    13  
    14  // #include <stdio.h>
    15  import "C"
    16  

View as plain text