summary refs log tree commit diff
path: root/src/test/compile-fail/fail-no-dead-code.rs
AgeCommit message (Collapse)AuthorLines
2014-09-24Use more descriptive names in dead code messagesJakub Wieczorek-1/+1
2014-08-11core/std: squash dead_code warnings from fail! invocations.Huon Wilson-0/+25
The fail macro defines some function/static items internally, which got a dead_code warning when `fail!()` is used inside a dead function. This is ugly and unnecessarily reveals implementation details, so the warnings can be squashed. Fixes #16192.