summaryrefslogtreecommitdiff
path: root/tests/ui/issues/issue-20803.rs
blob: 47bf52b31a026ef05874086f942c1ada4428c152 (plain)
1
2
3
4
5
6
7
8
9
10
//@ 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));
}