// 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. trait thing { fn foo() -> Option; } impl thing for int { fn foo() -> Option { None } } fn foo_func>(x: B) -> Option { x.foo() } struct A { a: int } pub fn main() { for iter::eachi(&(Some(A {a: 0}))) |i, a| { debug!("%u %d", i, a.a); } let _x: Option = foo_func(0); }