rust/tests/ui/suggestions/issue-97677.rs
2023-01-11 09:32:08 +00:00

9 lines
128 B
Rust

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