rust/tests/ui/macros/assert.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
367 B
Rust
Raw Normal View History

//@ revisions: with-generic-asset without-generic-asset
//@ [with-generic-asset] compile-flags: --cfg feature="generic_assert"
fn main() {
assert!(); //~ ERROR requires a boolean expression
assert!(struct); //~ ERROR expected expression
debug_assert!(); //~ ERROR requires a boolean expression
debug_assert!(struct); //~ ERROR expected expression
}