blob: d1747931e15c8255959026e87f9de0204a0fc6c4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// compile-flags: -Z control_flow_guard=disabled
#![crate_type = "lib"]
// A basic test function.
pub fn test() {
}
// Ensure the module flag cfguard is not present
// CHECK-NOT: !"cfguard"
|