From 05727bfc3a9cfd45a8e2028dfd0806f7a8f88015 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sat, 20 Feb 2021 17:53:40 +0100 Subject: =?UTF-8?q?Reorganize=20tests=20=F0=9F=94=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/typ/control/let.typ | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/typ/control/let.typ (limited to 'tests/typ/control/let.typ') diff --git a/tests/typ/control/let.typ b/tests/typ/control/let.typ new file mode 100644 index 00000000..e609d3a9 --- /dev/null +++ b/tests/typ/control/let.typ @@ -0,0 +1,11 @@ +// Test let bindings. +// Ref: false + +--- +// Automatically initialized with none. +#let x +#test(x, none) + +// Manually initialized with one. +#let x = 1 +#test(x, 1) -- cgit v1.2.3