rust/src/test/compile-fail/infinite-instantiation.rs

29 lines
458 B
Rust
Raw Normal View History

// error-pattern: overly deep expansion
// issue 2258
trait to_opt {
2012-08-20 14:23:37 -05:00
fn to_option() -> Option<self>;
}
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)
}
}
impl<T:Copy> Option<T>: to_opt {
2012-08-20 14:23:37 -05:00
fn to_option() -> Option<Option<T>> {
Some(self)
}
}
fn function<T:to_opt>(counter: uint, t: T) {
if counter > 0u {
function(counter - 1u, t.to_option());
}
}
fn main() {
function(22u, 22u);
}