summaryrefslogtreecommitdiff
path: root/tests/lang/typ/spacing.typ
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-02-20 17:53:40 +0100
committerLaurenz <laurmaedje@gmail.com>2021-02-20 23:34:33 +0100
commit05727bfc3a9cfd45a8e2028dfd0806f7a8f88015 (patch)
tree6c0b66eb2a9dff224cb39eb6ccb478656a706c04 /tests/lang/typ/spacing.typ
parent927341d93ae29678095e3b874bd68bfc57d4bc05 (diff)
Reorganize tests 🔀
Diffstat (limited to 'tests/lang/typ/spacing.typ')
-rw-r--r--tests/lang/typ/spacing.typ27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/lang/typ/spacing.typ b/tests/lang/typ/spacing.typ
deleted file mode 100644
index d44cd84c..00000000
--- a/tests/lang/typ/spacing.typ
+++ /dev/null
@@ -1,27 +0,0 @@
-// Test spacing around control flow structures.
-
----
-// Spacing around let.
-
-// Error: 6 expected identifier
-A#let;B \
-A#let x = 1;B #test(x, 1) \
-A #let x = 2;B #test(x, 2) \
-A#let x = 3; B #test(x, 3) \
-
----
-// Spacing around if-else.
-
-A#if true[B]C \
-A#if true[B] C \
-A #if true{"B"}C \
-A #if true{"B"} C \
-A#if false [] #else [B]C \
-A#if true [B] #else [] C \
-
----
-// Spacing around for loop.
-
-A#for _ in (none,) [B]C \
-A#for _ in (none,) [B] C \
-A #for _ in (none,) [B]C \