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

int main() {
    ASSERT_EQ(0, 0);
    ASSERT_EQ(291, 0x123);
    ASSERT_EQ(3405691582, 0xcafebabe);
    ASSERT_EQ(436, 0664);
}