2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
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);
|
|
|
|
}
|