]> git.lizzy.rs Git - rust.git/blob - src/test/ui/recursion_limit/no-value.rs
Rollup merge of #88624 - kellerkindt:master, r=JohnTitor
[rust.git] / src / test / ui / recursion_limit / no-value.rs
1 // Test the parse error for no value provided to recursion_limit
2
3 #![recursion_limit]
4 //~^ ERROR malformed `recursion_limit` attribute input
5
6 fn main() {}