2024-02-16 20:02:50 +00:00
|
|
|
//@ run-rustfix
|
2022-07-15 18:02:26 -07:00
|
|
|
|
2022-09-04 22:38:12 +00:00
|
|
|
fn add_ten<N: std::ops::Add<i32, Output = N>>(n: N) -> N {
|
2022-07-15 18:02:26 -07:00
|
|
|
n + 10
|
|
|
|
//~^ ERROR cannot add `{integer}` to `N`
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { add_ten(0); }
|