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