rust/tests/ui/suggestions/auxiliary/meow.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
156 B
Rust
Raw Normal View History

pub trait Meow {
fn meow(&self) {}
}
pub struct GlobalMeow;
impl Meow for GlobalMeow {}
pub(crate) struct PrivateMeow;
impl Meow for PrivateMeow {}