Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
use std::ops::Add;
fn foo<T>(x: T) -> <i32 as Add<T>>::Output where i32: Add<T> {
42i32 + x
}
fn main() {
println!("{}", foo(0i32));