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