blob: c3f8f4116819ce2bf420dce85a50b7c7926dc24c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// compile-flags: -C control-flow-guard=no
// only-msvc
#![crate_type = "lib"]
// A basic test function.
pub fn test() {
}
// Ensure the module flag cfguard is not present
// CHECK-NOT: !"cfguard"
|