about summary refs log tree commit diff
path: root/tests/ui/consts/control-flow/assert.rs
blob: 2c372075137433d7bd494588eb7b4db869818086 (plain)
1
2
3
4
5
6
7
8
// Test that `assert` works in consts.

const _: () = assert!(true);

const _: () = assert!(false);
//~^ ERROR assertion failed

fn main() {}