aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ternary_operator.c
blob: 1f46dbe28b84ca49cfd533bb8bdb8548c2974778 (plain)
1
2
3
4
5
6
#include <helpers.h>

int main() {
    ASSERT_EQ(2, 1 ? 2 : 3);
    ASSERT_EQ(5, 0 ? 4 : 5);
}