blob: be682b38865d38f13b14b6fd0ff0d33570b9d8ca [file] [log] [blame]
//@ run-pass
macro_rules! descriptions {
($name:ident is $desc:expr) => {
// Check that we will correctly expand attributes
#[doc = $desc]
#[allow(dead_code)]
const $name : &'static str = $desc;
}
}
// item
descriptions! { DOG is "an animal" }
descriptions! { RUST is "a language" }
pub fn main() {
}