+ Moved variables resolution in the compiler Parser. (Temp. solution until the new...
[haanga.git] / tests / assert_templates / bitwise.tpl
blobbec9825289bdfce3aa6b3b5227c37d19dbccf4e9
1 {% if 15 & 7 == 7 %}
2     Match
3 {% endif %}
4 {% if 13 & 2 == 0 %}
5     Match
6 {% endif %}
7 {% if 15 | 8 == 15 %}
8     Match
9 {% endif %}