Closed
Description
In the wild: phsym/prettytable-rs#11
This program prints "1" on stable and beta, but "0" on nightly:
macro_rules! cell {
($value:expr) => { 0 };
($style:ident : $value:expr) => { 1 };
}
fn main() {
println!("{}", cell!(t : T));
}
Originally reported by @hoodie