1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
use ctor::ctor; /// Doc #[ctor] /// Doc unsafe fn foo() { } #[::ctor::ctor] unsafe fn bar() { } #[ctor] static STATIC_CTOR: std::collections::HashMap<u32, &'static str> = unsafe { let m = std::collections::HashMap::new(); m }; fn main() { }