2010-09-13 15:37:24 -05:00
|
|
|
|
|
|
|
|
2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
// use of tail calls causes arg slot leaks, issue #160.
|
2012-07-14 00:57:48 -05:00
|
|
|
fn inner(dummy: ~str, b: bool) { if b { ret inner(dummy, false); } }
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn main() { inner(~"hi", true); }
|