about summary refs log tree commit diff
path: root/src/test/run-pass/test-vs-cfg-test.rs
blob: 75f4d0c8db23aaff45b5ddff61c306821c45c6fc (plain)
1
2
3
4
5
6
7
8
// compile-flags: --cfg test

// Make sure `--cfg test` does not inject test harness

#[test]
fn test() { panic!(); }

fn main() {}