mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 04:04:06 +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
|
|
};
|
|
}
|