rust/tests/ui/feature-gates/feature-gate-sanitize.rs
Josh Stone 1793eec353 test: remove an outdated normalization for rustc versions
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.
2025-09-11 15:11:16 -07:00

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() {
}