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