aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/match-opt-bool.html
blob: d2e445475d563a2781715f38350375d0e825410a (plain) (blame)
1
2
3
4
5
6
7
8
{% match item %}
{% when Some with (true) %}
Found Some(true)
{% when Some with (false) %}
Found Some(false)
{% when None %}
Not Found
{% endmatch %}