Files
rust/tests/run-make/test-harness/test-ignore-cfg.rs

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

8 lines
126 B
Rust
Raw Normal View History

#[test]
#[cfg_attr(ignorecfg, ignore)]
fn shouldignore() {}
#[test]
#[cfg_attr(noignorecfg, ignore)]
fn shouldnotignore() {}