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