aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/assert.c
blob: e57f3e3afd4815a3881a51a8e26ab8e1fe3b70ee (plain)
1
2
3
4
5
6
7
8
9
10
#include <helpers.h>

static_assert(1);
static_assert(1, "always true");
static_assert(1 + 1);
static_assert(123 == 123);
static_assert(sizeof(int) == sizeof(unsigned int));

int main() {
}