mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 10:13:54 +00:00
12 lines
160 B
Rust
12 lines
160 B
Rust
//@ check-pass
|
|
|
|
#![feature(inline_const)]
|
|
|
|
fn main() {
|
|
let _my_usize = const {
|
|
let a = 10_usize;
|
|
let b: &'_ usize = &a;
|
|
*b
|
|
};
|
|
}
|