Merge branch 'master' into ChaiScript_5_0_CPP_11

This commit is contained in:
Jason Turner
2013-02-24 15:19:16 -07:00
3 changed files with 18 additions and 3 deletions

View File

@@ -6,3 +6,12 @@ auto t = TestDerivedType();
assert_equal(t0.func(), 0);
assert_equal(t.func(), 1);
assert_equal(10, t0.val);
assert_equal(15, t0.const_val);
assert_equal(10, t.val);
assert_equal(15, t.const_val);
t.val = 23;
assert_equal(23, t.val)

View File

@@ -1,2 +1,4 @@
load_module("test_module")
assert_equal("Hello World", hello_world());