summaryrefslogtreecommitdiff
path: root/tests/typ/expr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/expr')
-rw-r--r--tests/typ/expr/call.typ1
-rw-r--r--tests/typ/expr/closure.typ4
2 files changed, 1 insertions, 4 deletions
diff --git a/tests/typ/expr/call.typ b/tests/typ/expr/call.typ
index 358322d1..0e941124 100644
--- a/tests/typ/expr/call.typ
+++ b/tests/typ/expr/call.typ
@@ -54,7 +54,6 @@
---
// Different forms of template arguments.
-// Ref: true
#let a = "a"
diff --git a/tests/typ/expr/closure.typ b/tests/typ/expr/closure.typ
index d05acaa4..86a6f632 100644
--- a/tests/typ/expr/closure.typ
+++ b/tests/typ/expr/closure.typ
@@ -1,7 +1,7 @@
// Test closures.
+// Ref: false
---
-// Ref: false
// Basic closure without captures.
{
@@ -45,8 +45,6 @@
}
---
-// Ref: false
-
// Too few arguments.
{
let types(x, y) = "[" + type(x) + ", " + type(y) + "]"