1
0
forked from aniani/vim
vim/runtime/syntax/testdir/input/c_bool_constant.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
165 B
C
Raw Normal View History

// C boolean constants
// Source: https://en.cppreference.com/w/c/language/bool_constant
#include <assert.h>
int main()
{
assert(true == 1 && 0 == false);
}