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