]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/test-harness/test-ignore-cfg.rs
Merge commit '1480cea393d0cee195e59949eabdfbcf1230f7f9' into clippyup
[rust.git] / tests / run-make-fulldeps / test-harness / test-ignore-cfg.rs
1 #[test]
2 #[cfg_attr(ignorecfg, ignore)]
3 fn shouldignore() {
4 }
5
6 #[test]
7 #[cfg_attr(noignorecfg, ignore)]
8 fn shouldnotignore() {
9 }