summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-97677.fixed
blob: 1e7569fa45106c60b8660a83af58f6c6c3757648 (plain)
1
2
3
4
5
6
7
8
// run-rustfix

fn add_ten<N: std::ops::Add<i32, Output = N>>(n: N) -> N {
    n + 10
    //~^ ERROR cannot add `{integer}` to `N`
}

fn main() { add_ten(0); }