tools/corrosion/test/cbindgen/rust2cpp/main.cpp
author unC0Rr
Wed, 20 Nov 2024 21:37:47 +0100
branchtransitional_engine
changeset 16038 d903f8d2395a
parent 16021 6a3dc15b78b9
permissions -rw-r--r--
- Update corrosion - Implement installation of targets imported with corrosion

#include "rust-lib.h"
#include <cassert>

int main(int argc, char **argv) {
    assert(is_magic_number(MAGIC_NUMBER));
    struct Point p1, p2;
    p1.x = 54;
    p2.x = 46;
    p1.y = 34;
    p2.y = 66;
    add_point(&p1, &p2);
    assert(p1.x == 100);
    assert(p2.x == 46);
    assert(p1.y == 100);
    assert(p2.y == 66);
    add_point(&p1, NULL);
    assert(p1.x == 100);
    assert(p1.y == 100);

    assert(OTHER_MOD_MAGIC_NUMBER == 192312312);
    assert(FFI_MAGIC_NUMBER == 0xFDA00184);
}