use core::ptr::NonNull;
#[unsafe(no_mangle)]
fn __bun_jsc_enable_hot_module_reloading_for_bundler(
_bv2: NonNull<bun_bundler::BundleV2<'static>>,
) {
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn hmr_symbol_is_callable() {
let ptr = __bun_jsc_enable_hot_module_reloading_for_bundler as *const ();
assert!(!ptr.is_null(), "HMR symbol must be linked");
}
#[test]
fn hmr_symbol_has_correct_signature() {
let _: fn(NonNull<bun_bundler::BundleV2<'static>>) =
__bun_jsc_enable_hot_module_reloading_for_bundler;
}
}