blob: e700999ae4bd8c939d4adf11b6f2dc77f514f343 [file] [log] [blame] [edit]
macro_rules! join {
($lhs:ident, $rhs:ident) => {
let ${concat($lhs, $rhs)}: () = ();
//~^ ERROR the `concat` meta-variable expression is unstable
};
}
fn main() {
}