1// dummy 2pub mod Internal { 3 pub struct VirtualMachine; 4 5 impl VirtualMachine { 6 pub const fn get_singleton() -> *mut Self { 7 std::ptr::null_mut() 8 } 9 } 10} 11pub struct IVirtualMachine;