summary refs log tree commit diff
path: root/src/test/compile-fail/lint-unsafe-code.rs
AgeCommit message (Collapse)AuthorLines
2015-04-02Fallout in testsNiko Matsakis-5/+2
2015-02-23Properly reimplement `unsafe-code` lint to honor changing lint attributesIvan Petkov-0/+49
2015-02-22Fix lint-unsafe-code test from #22542Manish Goregaokar-2/+5
2015-02-19Unsafe lint will also check for other unsafe codeIvan Petkov-0/+50
Checks include declaration/implementation of unsafe functions, traits, and methods. This allows warning or forbidding all uses of unsafe code, whereas previously only unsafe blocks were caught by the lint. The lint has been renamed from `unsafe-blocks` to `unsafe-code` to reflect its new purpose. This is a minor [breaking-change] Closes #22430