trpl-zh-cn/listings/ch20-advanced-features/listing-20-11/src/main.rs

10 lines
125 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
unsafe trait Foo {
// methods go here
}
unsafe impl Foo for i32 {
// method implementations go here
}
fn main() {}