0
0
mirror of https://github.com/vim/vim.git synced 2025-07-25 10:54:51 -04:00
vim/runtime/syntax/testdir/input/c_bool_constant.c

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);
}