diff options
Diffstat (limited to 'tests/ui/macros/assert.rs')
-rw-r--r-- | tests/ui/macros/assert.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/macros/assert.rs b/tests/ui/macros/assert.rs new file mode 100644 index 000000000..a314db907 --- /dev/null +++ b/tests/ui/macros/assert.rs @@ -0,0 +1,9 @@ +// 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 +} |