summaryrefslogtreecommitdiffstats
path: root/tests/ui/tail-call-arg-leak.rs
blob: a60944b632d29d364c85d4df72a23a3d03299318 (plain)
1
2
3
4
5
6
7
8
9
// run-pass
// use of tail calls causes arg slot leaks, issue #160.
// pretty-expanded FIXME #23616

fn inner(dummy: String, b: bool) { if b { return inner(dummy, false); } }

pub fn main() {
    inner("hi".to_string(), true);
}