mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
9 lines
138 B
ChaiScript
9 lines
138 B
ChaiScript
load_module("test_module")
|
|
|
|
auto t0 = TestBaseType()
|
|
auto t = TestDerivedType();
|
|
|
|
assert_equal(t0.func(), 0);
|
|
assert_equal(t.func(), 1);
|
|
|