
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
8 lines
198 B
Rust
8 lines
198 B
Rust
//@ run-pass
|
|
// use of tail calls causes arg slot leaks, issue #160.
|
|
|
|
fn inner(dummy: String, b: bool) { if b { return inner(dummy, false); } }
|
|
|
|
pub fn main() {
|
|
inner("hi".to_string(), true);
|
|
}
|