// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // error-pattern: overly deep expansion // issue 2258 trait to_opt { fn to_option() -> Option; } impl to_opt for uint { fn to_option() -> Option { Some(self) } } impl to_opt for Option { fn to_option() -> Option> { Some(self) } } fn function(counter: uint, t: T) { if counter > 0u { function(counter - 1u, t.to_option()); } } fn main() { function(22u, 22u); }