diff options
Diffstat (limited to 'testing/templates/let-destruct-tuple.html')
-rw-r--r-- | testing/templates/let-destruct-tuple.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testing/templates/let-destruct-tuple.html b/testing/templates/let-destruct-tuple.html new file mode 100644 index 0000000..395e872 --- /dev/null +++ b/testing/templates/let-destruct-tuple.html @@ -0,0 +1,3 @@ +{% let (a, ((b, c), (d))) = abcd %}{{a}}{{b}}{{c}}{{d}} +{% let (a, (_, d)) = abcd %}{{a}}{{d}} +{% let (((a))) = abcd.0 %}{{a}} |