mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
9 lines
160 B
Rust
9 lines
160 B
Rust
// 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); }
|