]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/test-harness/test-ignore-cfg.rs
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[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 }