diff --git a/src/runtime/synctest.go b/src/runtime/synctest.go index fa11c991fc..5e28869950 100644 --- a/src/runtime/synctest.go +++ b/src/runtime/synctest.go @@ -13,3 +13,9 @@ func synctest_acquire() any { func synctest_release(sg any) { // Dummy: we don't support synctest. } + +//go:linkname synctest_inBubble internal/synctest.inBubble +func synctest_inBubble(bubble any, f func()) { + // Dummy: we don't support synctest, so run f outside of any bubble. + f() +}