mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 11:11:14 +00:00
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() { }
|