...

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

Documentation: cmd/link/testdata/script

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

View as plain text