Files
rust/tests/ui/feature-gates/feature-gate-sanitize.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
169 B
Rust
Raw Normal View History

#![feature(no_sanitize)] //~ ERROR feature has been removed
#[sanitize(address = "on")]
//~^ ERROR the `#[sanitize]` attribute is an experimental feature
fn main() {
}