summary refs log tree commit diff stats
path: root/tests/macros/tfail_parse.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/macros/tfail_parse.nim')
-rw-r--r--tests/macros/tfail_parse.nim15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/macros/tfail_parse.nim b/tests/macros/tfail_parse.nim
new file mode 100644
index 000000000..1925f2b69
--- /dev/null
+++ b/tests/macros/tfail_parse.nim
@@ -0,0 +1,15 @@
+discard """
+action: "reject"
+cmd: "nim check $file"
+errormsg: "expected expression, but got multiple statements [ValueError]"
+file: "macros.nim"
+"""
+
+import macros
+static:
+  discard parseStmt("'")
+  discard parseExpr("'")
+  discard parseExpr("""
+proc foo()
+proc foo() = discard
+""")