mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
365 B
Rust
10 lines
365 B
Rust
// 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
|
|
}
|