mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 16:26:49 +00:00
8 lines
343 B
Rust
8 lines
343 B
Rust
// Test the parse error for an invalid digit in recursion_limit
|
|
|
|
#![recursion_limit = "-100"] //~ ERROR `limit` must be a non-negative integer
|
|
//~| not a valid integer
|
|
//~| ERROR `limit` must be a non-negative integer
|
|
//~| not a valid integer
|
|
fn main() {}
|