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 {
fn to_option() -> option<self>;
}
2012-08-07 20:10:06 -05:00
impl uint: to_opt {
fn to_option() -> option<uint> {
some(self)
}
}
2012-08-07 20:10:06 -05:00
impl<T:copy> option<T>: to_opt {
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);
}