Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
early-ret-binop-add.rs
blob: 5daf79c214c50b1eecfb03ae17ac5f7ead5eee48 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
#![
allow
(
unreachable_code
)]
//@ pretty-expanded FIXME #23616
use
std
::
ops
::
Add
;
fn
wsucc
<
T
:
Add
<
Output
=
T
>
+
Copy
>(
n
:
T
)
->
T
{
n
+
{
return
n
}
}
pub
fn
main
()
{
}