trpl-zh-cn/listings/ch20-advanced-features/listing-20-11/src/main.rs
2024-10-20 23:44:05 +08:00

10 lines
125 B
Rust

unsafe trait Foo {
// methods go here
}
unsafe impl Foo for i32 {
// method implementations go here
}
fn main() {}