mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-30 02:08:02 +08:00
8 lines
105 B
Rust
8 lines
105 B
Rust
fn main() {
|
|
// ANCHOR: here
|
|
unsafe fn dangerous() {}
|
|
|
|
dangerous();
|
|
// ANCHOR_END: here
|
|
}
|