summaryrefslogtreecommitdiff
path: root/mnv/runtime/syntax/testdir/input/c_bool_constant.c
blob: 8c80728865a903367753d3c482a1302db14a7a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
// C boolean constants

// Source: https://en.cppreference.com/w/c/language/bool_constant

#include <assert.h>

int main()
{
    assert(true == 1 && 0 == false);
}