2022-07-16 19:04:30 -05:00
|
|
|
#![feature(macro_metavar_expr)]
|
|
|
|
|
|
|
|
macro_rules! metavar {
|
|
|
|
( $i:expr ) => {
|
2024-05-10 14:12:39 -05:00
|
|
|
${len(0)}
|
|
|
|
//~^ ERROR meta-variable expression `len` with depth parameter must be called inside of a macro repetition
|
2022-07-16 19:04:30 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const _: i32 = metavar!(0);
|
|
|
|
|
|
|
|
fn main() {}
|