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