1// Copyright 2024 The Go Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style 3// license that can be found in the LICENSE file. 4 5package p 6 7import _ "unsafe" 8 9// f1 is pushed from main. 10// 11//go:linkname f1 12func f1() 13 14// Push f2 to main. 15// 16//go:linkname f2 main.f2 17func f2() {} 18 19func F() { f1() } 20