1 2 3 4 5 6 7 8 9
trait Trait { fn outer(&self) { fn inner(_: &Self) { //~^ ERROR can't use `Self` from outer item } } } fn main() { }