summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-97677.rs
blob: 2abf2af33845c5a5d8ea8afec8da5cc523109557 (plain)
1
2
3
4
5
6
7
8
// run-rustfix

fn add_ten<N>(n: N) -> N {
    n + 10
    //~^ ERROR cannot add `{integer}` to `N`
}

fn main() { add_ten(0); }