aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/let-destruct-tuple.html
blob: 395e872a33df81fa852f46b74e13132bfdc6eec1 (plain) (blame)
1
2
3
{% let (a, ((b, c), (d))) = abcd %}{{a}}{{b}}{{c}}{{d}}
{% let (a, (_, d)) = abcd %}{{a}}{{d}}
{% let (((a))) = abcd.0 %}{{a}}