From 20f34be742b27f18d944d60dcb3e04b822c6d9ef Mon Sep 17 00:00:00 2001 From: vallentin Date: Wed, 23 Dec 2020 15:11:53 +0100 Subject: Added let shadow test --- testing/templates/let-shadow.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 testing/templates/let-shadow.html (limited to 'testing/templates/let-shadow.html') diff --git a/testing/templates/let-shadow.html b/testing/templates/let-shadow.html new file mode 100644 index 0000000..938c5bf --- /dev/null +++ b/testing/templates/let-shadow.html @@ -0,0 +1,22 @@ +{%- let a = 1 -%} +{%- let b -%} + +{%- if cond -%} + {%- let b = 22 -%} + {{ b }}- + + {%- let b = 33 -%} + {{ a }}-{{ b }}- +{%- else -%} + {%- let b = 222 -%} + {{ b }}- + + {%- let b = 333 -%} + {{ a }}-{{ b }}- + + {%- let (a, b) = Self::tuple() -%} + {{ a }}-{{ b }}- +{%- endif -%} + +{%- let a = 11 -%} +{{ a }}-{{ b }} -- cgit