github.com/tinygo-org/tinygo@v0.31.3-0.20240404173401-90b0bf646c27/tests/testing/builderr/builderr.go (about) 1 package builderr 2 3 import _ "unsafe" 4 5 //go:linkname x notARealFunction 6 func x() 7 8 func Thing() { 9 x() 10 }