rust/src/test/ui/reachable
..
expr_add.rs
expr_add.stderr
expr_again.rs
expr_again.stderr
expr_andand.rs
expr_andand.stderr
expr_array.rs
expr_array.stderr
expr_assign.rs
expr_assign.stderr
expr_block.rs
expr_block.stderr
expr_box.rs
expr_box.stderr
expr_call.rs
expr_call.stderr
expr_cast.rs
expr_cast.stderr
expr_if.rs
expr_if.stderr
expr_loop.rs
expr_loop.stderr
expr_match.rs
expr_match.stderr
expr_method.rs
expr_method.stderr
expr_oror.rs
expr_oror.stderr
expr_repeat.rs
expr_repeat.stderr
expr_return.rs
expr_return.stderr
expr_struct.rs
expr_struct.stderr
expr_tup.rs
expr_tup.stderr
expr_type.rs
expr_type.stderr
expr_unary.rs
expr_unary.stderr
expr_while.rs
expr_while.stderr
README.md

A variety of tests around reachability. These tests in general check two things:

  • that we get unreachable code warnings in reasonable locations;
  • that we permit coercions into ! from expressions which diverge, where an expression "diverges" if it must execute some subexpression of type !, or it has type ! itself.