about summary refs log tree commit diff
path: root/tests/ui/precondition-checks/cfg-ub-checks-default.rs
blob: b672589d02a230e9c23aff00c4dbdce917b6a989 (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass
//@ revisions: YES NO
//@ [YES] compile-flags: -Cdebug-assertions=yes
//@ [NO] compile-flags: -Cdebug-assertions=no

#![feature(cfg_ub_checks)]

fn main() {
    assert_eq!(cfg!(ub_checks), cfg!(debug_assertions));
}