Sign in
◑
Theme
rust
/
rust
/
0ae3fd93a3a91460c1957fa38fa9514decbcdf23
/
.
/
tests
/
ui
/
reachable
/
expr_add.rs
blob: 640c2a2cf8fccdf7abde97bb3e116141fa247b03 [
file
]
#![
allow
(
unused_variables
)]
#![
deny
(
unreachable_code
)]
use
std
::
ops
;
struct
Foo
;
impl
ops
::
Add
<!>
for
Foo
{
type
Output
=
!;
fn
add
(
self
,
rhs
:
!)
->
!
{
unimplemented
!()
}
}
fn
main
()
{
let
x
=
Foo
+
return
;
//~ ERROR unreachable
}