blob: f657cf6cdd7252e2d7e9129b42dece647185ca51 [file] [log] [blame]
// 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));
}