summaryrefslogtreecommitdiffstats
path: root/tests/run-make/test-harness/test-ignore-cfg.rs
blob: 31ef131f2ad76cdd5f54c06875bbee98003adaea (plain)
1
2
3
4
5
6
7
8
9
#[test]
#[cfg_attr(ignorecfg, ignore)]
fn shouldignore() {
}

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