]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/test-harness/test-ignore-cfg.rs
Auto merge of #100251 - compiler-errors:tuple-trait-2, r=jackh726
[rust.git] / src / test / 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 }