rust/tests/ui/structs-enums/auxiliary/cci_class_trait.rs

6 lines
77 B
Rust

pub mod animals {
pub trait noisy {
fn speak(&mut self);
}
}