2012-04-23 09:44:52 -05:00
|
|
|
// error-pattern: overly deep expansion
|
|
|
|
// issue 2258
|
|
|
|
|
2012-07-31 12:27:51 -05:00
|
|
|
trait to_opt {
|
2012-08-20 14:23:37 -05:00
|
|
|
fn to_option() -> Option<self>;
|
2012-04-23 09:44:52 -05:00
|
|
|
}
|
|
|
|
|
2012-08-07 20:10:06 -05:00
|
|
|
impl uint: to_opt {
|
2012-08-20 14:23:37 -05:00
|
|
|
fn to_option() -> Option<uint> {
|
|
|
|
Some(self)
|
2012-04-23 09:44:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-07 16:52:28 -05:00
|
|
|
impl<T:Copy> Option<T>: to_opt {
|
2012-08-20 14:23:37 -05:00
|
|
|
fn to_option() -> Option<Option<T>> {
|
|
|
|
Some(self)
|
2012-04-23 09:44:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn function<T:to_opt>(counter: uint, t: T) {
|
|
|
|
if counter > 0u {
|
|
|
|
function(counter - 1u, t.to_option());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
function(22u, 22u);
|
|
|
|
}
|