blob: e5dcf9643453b14216ba65b698835bb595b22aac [file] [log] [blame] [edit]
trait Trait {
fn outer(&self) {
fn inner(_: &Self) {
//~^ ERROR can't use `Self` from outer item
}
}
}
fn main() { }