gmqcc/tests/truth-flags-3.tmpl
2012-12-22 17:36:06 +01:00

14 lines
375 B
Cheetah

I: truth-flags-2.qc
D: logic flags
T: -execute
C: -std=fteqcc -ffalse-empty-strings
M: ! & | i N
M: 'str', 'str' -> 0 1 1 1 0
M: 'str', '' -> 0 0 1 1 0
M: 'str', 0 -> 0 0 1 1 0
M: '', 'str' -> 1 0 1 0 1
M: '', '' -> 1 0 0 0 1
M: '', 0 -> 1 0 0 0 1
M: 0, 'str' -> 1 0 1 0 1
M: 0, '' -> 1 0 0 0 1
M: 0, 0 -> 1 0 0 0 1