rust/tests/ui/recursion_limit/invalid_macro.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
132 B
Rust
Raw Normal View History

#![recursion_limit = foo!()] //~ ERROR malformed `recursion_limit` attribute
macro_rules! foo {
() => {"128"};
}
fn main() {}