Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
suggestions
/
issue-97677.fixed
blob: 255910487d4b51f98738f3a4da04e0cb43b10551 [
file
] [
log
] [
blame
]
//@ 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
);
}