mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00

These "you are using $RUSTC_VERSION" help messages were removed in rust-lang/rust#142943, but rust-lang/rust#142681 started before that and merged later, so its normalization is vestigial.
7 lines
169 B
Rust
7 lines
169 B
Rust
#![feature(no_sanitize)] //~ ERROR feature has been removed
|
|
|
|
#[sanitize(address = "on")]
|
|
//~^ ERROR the `#[sanitize]` attribute is an experimental feature
|
|
fn main() {
|
|
}
|