summary refs log tree commit diff
path: root/src/test/ui/missing/missing-items/auxiliary/m1.rs
blob: 7705066760c50f31a98b5785af7a5f4ec270762a (plain)
1
2
3
4
5
pub trait X {
    const CONSTANT: u32;
    type Type;
    fn method(&self, s: String) -> Self::Type;
}