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