// in src/lib.rs /// Entry point for `cargo test` #[cfg(test)] #[no_mangle] pub extern "C" fn _start() -> ! { init(); // 새로 추가한 코드 test_main(); loop {} } Rust는 lib.rs를 main.rs와는 독립적으로 테스트하기 때문에 ...