10 lines
154 B
Rust
10 lines
154 B
Rust
trait Trait {
|
|
fn outer(&self) {
|
|
fn inner(_: &Self) {
|
|
//~^ ERROR can't use `Self` from outer item
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() { }
|