mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
11 lines
102 B
Go
11 lines
102 B
Go
package builderr
|
|
|
|
import _ "unsafe"
|
|
|
|
//go:linkname x notARealFunction
|
|
func x()
|
|
|
|
func Thing() {
|
|
x()
|
|
}
|