aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/number_literals.sh
blob: e96308acf34755f0cbdb2efe2272943f5c514551 (plain)
1
2
3
4
5
6
7
8
9
10
test_exit_code 0 <<'EOF'
#include "../../helpers.h"

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