mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 13:07:37 +00:00
14 lines
161 B
Rust
14 lines
161 B
Rust
![]() |
//@ check-pass
|
||
|
|
||
|
macro_rules! len {
|
||
|
($x:ident) => {
|
||
|
$x
|
||
|
};
|
||
|
}
|
||
|
|
||
|
fn bar<const N: usize>() {
|
||
|
let val: [bool; len!(N)] = [true; N];
|
||
|
}
|
||
|
|
||
|
fn main() {}
|