Files
rust/tests/ui/consts/static-default-lifetime/inner-item.rs

22 lines
282 B
Rust
Raw Normal View History

2024-06-13 20:33:43 -04:00
//@ 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() {}