Home
last modified time | relevance | path

Searched refs:test_object (Results 1 – 1 of 1) sorted by relevance

/wasmtime-44.0.1/crates/c-api/tests/
H A Dsimple.cc155 struct test_object { in TEST() struct
156 test_object() : v(nullptr) {} in TEST() argument
157 test_object(int i) : v(new int(i)) {} in TEST() function
158 test_object(const test_object &other) in TEST() argument
160 test_object(test_object &&other) : v(other.v) { other.v = nullptr; } in TEST() argument
161 ~test_object() { in TEST() argument
170 test_object data(7); in TEST()
176 std::any_cast<test_object *>(caller.context().get_data()); in TEST()
190 std::any_cast<test_object &>(caller.context().get_data()); in TEST()
204 std::any_cast<test_object &>(caller.context().get_data()); in TEST()