mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 10:19:00 +00:00
22 lines
282 B
Rust
22 lines
282 B
Rust
//@ check-pass
|
|
|
|
struct Foo<'a>(&'a ());
|
|
|
|
impl<'a> Foo<'a> {
|
|
fn hello(self) {
|
|
const INNER: &str = "";
|
|
}
|
|
}
|
|
|
|
impl Foo<'_> {
|
|
fn implicit(self) {
|
|
const INNER: &str = "";
|
|
}
|
|
|
|
fn fn_lifetime(&self) {
|
|
const INNER: &str = "";
|
|
}
|
|
}
|
|
|
|
fn main() {}
|