1 2 3 4 5 6 7 8 9 10 11
// check-pass #![allow(dead_code)] struct Foo; impl Foo { fn new() -> Self { Foo } fn bar() { Self::new(); } } fn main() {}