rust/tests/ui/recursion_limit/no-value.rs

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

7 lines
155 B
Rust
Raw Normal View History

// Test the parse error for no value provided to recursion_limit
#![recursion_limit]
//~^ ERROR malformed `recursion_limit` attribute input
fn main() {}