blob: dc54c32cad364ca28ef32a76950fdea9ff4452c5 [file] [log] [blame]
#![crate_type = "lib"]
#![feature(macro_attr)]
macro_rules! attr {
attr() { $($body:tt)* } => {
#[attr] $($body)*
};
//~^^ ERROR: recursion limit reached
}
#[attr]
struct S;