mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
10 lines
133 B
Rust
10 lines
133 B
Rust
//@ check-pass
|
|
|
|
fn main() {
|
|
let _my_usize = const {
|
|
let a = 10_usize;
|
|
let b: &'_ usize = &a;
|
|
*b
|
|
};
|
|
}
|