blob: 47bf52b31a026ef05874086f942c1ada4428c152 [file] [log] [blame] [edit]
//@ 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));
}