summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-20803.rs
blob: f657cf6cdd7252e2d7e9129b42dece647185ca51 (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));
}