12 lines
240 B
Rust
12 lines
240 B
Rust
// Test that a `recursion_limit` of 0 is valid
|
|
|
|
#![recursion_limit = "0"]
|
|
|
|
macro_rules! test {
|
|
() => {};
|
|
($tt:tt) => { test!(); };
|
|
}
|
|
|
|
test!(test); //~ ERROR 10:1: 10:13: recursion limit reached while expanding `test!`
|
|
|
|
fn main() {}
|