blob: 4a19b864b5a2a8033c2cb56fdf16d089647d797f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{% macro foo(b) -%}
{{ b }}
{%- endmacro -%}
{% call foo(true) -%}
{% call foo(true && true) -%}
{% call foo(true && true && true) -%}
{% call foo(false) -%}
{% call foo(false || true) -%}
{% call foo(false || false || true) -%}
|