rust/tests/ui/issues/issue-20803.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
158 B
Rust
Raw Normal View History

//@ run-pass
2015-08-28 16:54:17 +00:00
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));
}