trpl-zh-cn/listings/ch20-advanced-features/output-only-01-missing-unsafe/src/main.rs

8 lines
105 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
unsafe fn dangerous() {}
dangerous();
// ANCHOR_END: here
}