...

Text file src/cmd/compile/testdata/script/script_test_basics.txt

Documentation: cmd/compile/testdata/script

     1
     2# Test of the linker's script test harness.
     3
     4go build
     5[!cgo] skip
     6cc -c testdata/mumble.c
     7[GOEXPERIMENT:fieldtrack] help exec
     8
     9-- go.mod --
    10module main
    11
    12go 1.20
    13
    14-- main.go --
    15package main
    16
    17func main() {
    18  println("Hi mom!")
    19}
    20
    21-- testdata/mumble.c --
    22
    23int x;
    24
    25

View as plain text