2018-09-30 01:00:50 +00:00
|
|
|
#![feature(lint_reasons)]
|
|
|
|
|
2020-11-07 23:14:38 +00:00
|
|
|
// If you turn off deduplicate diagnostics (which rustc turns on by default but
|
|
|
|
// compiletest turns off when it runs ui tests), then the errors are
|
|
|
|
// (unfortunately) repeated here because the checking is done as we read in the
|
|
|
|
// errors, and currently that happens two or three different times, depending on
|
|
|
|
// compiler flags.
|
|
|
|
//
|
|
|
|
// The test is much cleaner if we deduplicate, though.
|
|
|
|
|
|
|
|
// compile-flags: -Z deduplicate-diagnostics=yes
|
|
|
|
|
2018-09-30 00:25:26 +00:00
|
|
|
#![forbid(
|
|
|
|
unsafe_code,
|
|
|
|
//~^ NOTE `forbid` level set here
|
2020-11-07 23:14:38 +00:00
|
|
|
//~| NOTE the lint level is defined here
|
2018-09-30 00:25:26 +00:00
|
|
|
reason = "our errors & omissions insurance policy doesn't cover unsafe Rust"
|
|
|
|
)]
|
|
|
|
|
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let a_billion_dollar_mistake = ptr::null();
|
|
|
|
|
|
|
|
#[allow(unsafe_code)]
|
2020-11-07 23:14:38 +00:00
|
|
|
//~^ ERROR allow(unsafe_code) incompatible with previous forbid
|
2018-09-30 00:25:26 +00:00
|
|
|
//~| NOTE our errors & omissions insurance policy doesn't cover unsafe Rust
|
2020-11-07 23:14:38 +00:00
|
|
|
//~| NOTE overruled by previous forbid
|
2018-09-30 00:25:26 +00:00
|
|
|
unsafe {
|
2020-11-07 23:14:38 +00:00
|
|
|
//~^ ERROR usage of an `unsafe` block
|
|
|
|
//~| NOTE our errors & omissions insurance policy doesn't cover unsafe Rust
|
2018-09-30 00:25:26 +00:00
|
|
|
*a_billion_dollar_mistake
|
|
|
|
}
|
|
|
|
}
|