mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
221 B
Rust
19 lines
221 B
Rust
// check-pass
|
|
// This resulted in an ICE. Test for future-proofing
|
|
// Issue #24227
|
|
|
|
#![allow(unused)]
|
|
|
|
struct Foo<'a> {
|
|
x: &'a u8
|
|
}
|
|
|
|
impl<'a> Foo<'a> {
|
|
fn foo() {
|
|
let mut tmp: Self;
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {}
|