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.
|
2011-07-27 07:19:39 -05:00
|
|
|
fn inner(dummy: str, b: bool) { if b { be inner(dummy, false); } }
|
2011-06-15 13:19:50 -05:00
|
|
|
|
|
|
|
fn main() { inner("hi", true); }
|