Text file misc/go.mod

     1  // Module misc contains tests and binaries that pertain to specific build modes
     2  // (cgo) and platforms (Android and iOS).
     3  //
     4  // The 'run' scripts in ../src execute these tests and binaries, which need to
     5  // be in a module in order to build and run successfully in module mode.
     6  // (Otherwise, they lack well-defined import paths, and module mode — unlike
     7  // GOPATH mode — does not synthesize import paths from the absolute working
     8  // directory.)
     9  module misc
    10  
    11  go 1.18
    12  

View as plain text