mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
21 lines
339 B
Rust
21 lines
339 B
Rust
// Verify that elided lifetimes inside anonymous constants are not forced to be `'static`.
|
|
// check-pass
|
|
|
|
fn foo() -> [(); {
|
|
let a = 10_usize;
|
|
let b: &'_ usize = &a;
|
|
*b
|
|
}] {
|
|
[(); 10]
|
|
}
|
|
|
|
fn bar() -> [(); 10] {
|
|
[(); {
|
|
let a = 10_usize;
|
|
let b: &'_ usize = &a;
|
|
*b
|
|
}]
|
|
}
|
|
|
|
fn main() {}
|