Home
last modified time | relevance | path

Searched defs:TestFactory7 (Results 1 – 1 of 1) sorted by relevance

/external/python/pybind11/tests/
Dtest_factory_constructors.cpp95 class TestFactory7 { class
100 TestFactory7(int i) : value{i} { print_created(this, i); } in TestFactory7() function in TestFactory7
101 TestFactory7(TestFactory7 &&f) { print_move_created(this); value = f.value; alias = f.alias; } in TestFactory7() function in TestFactory7
102TestFactory7(const TestFactory7 &f) { print_copy_created(this); value = f.value; alias = f.alias; } in TestFactory7() function in TestFactory7