summaryrefslogtreecommitdiff
path: root/tests/ternary-op.c
blob: 936e011274f2dae03f6ee2628765540f9caa5a8f (plain)
1
2
3
4
5
6
int res, second;
int main() {
    res = 0 ? 2 : 3;
    second = 1 ? 2 : 3;
    return 0;
}