Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
suggestions
/
issue-97677.rs
blob: a7772a9bf9a7fe5879dc1523c4bb5cec68969853 [
file
] [
log
] [
blame
]
//@ run-rustfix
fn
add_ten
<
N
>(
n
:
N
)
->
N
{
n
+
10
//~^ ERROR cannot add `{integer}` to `N`
}
fn
main
()
{
add_ten
(
0
);
}