]> git.lizzy.rs Git - rust.git/blob - src/test/ui/reachable/README.md
Add 'src/tools/clippy/' from commit 'd2708873ef711ec8ab45df1e984ecf24a96cd369'
[rust.git] / src / test / ui / reachable / README.md
1 A variety of tests around reachability. These tests in general check
2 two things:
3
4 - that we get unreachable code warnings in reasonable locations;
5 - that we permit coercions **into** `!` from expressions which
6   diverge, where an expression "diverges" if it must execute some
7   subexpression of type `!`, or it has type `!` itself.