mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
12 lines
158 B
Rust
12 lines
158 B
Rust
// See coherence_inherent_cc.rs
|
|
|
|
pub trait TheTrait {
|
|
fn the_fn(&self);
|
|
}
|
|
|
|
pub struct TheStruct;
|
|
|
|
impl TheTrait for TheStruct {
|
|
fn the_fn(&self) {}
|
|
}
|