2019-07-26 16:54:25 -05:00
|
|
|
// run-pass
|
2011-06-15 13:19:50 -05:00
|
|
|
// use of tail calls causes arg slot leaks, issue #160.
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
fn inner(dummy: String, b: bool) { if b { return inner(dummy, false); } }
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2014-05-12 19:56:43 -05:00
|
|
|
pub fn main() {
|
2014-05-25 05:17:19 -05:00
|
|
|
inner("hi".to_string(), true);
|
2014-05-12 19:56:43 -05:00
|
|
|
}
|