blob: 98b6e85225db58dd580c62d2103ee8a98ecac375 [file] [log] [blame]
//@ check-pass
trait A {
fn a_method(&self);
}
trait B: A {
fn b_method(&self);
}
trait C: B {
fn c_method(&self) {
self.a_method();
}
}
pub fn main() {}