Add missing inheritance unit test

This commit is contained in:
Jason Turner 2010-08-03 01:18:15 +00:00
parent f4e4f92dae
commit 2b80ca8cc5

View File

@ -0,0 +1,8 @@
load_module("test_module")
var t0 = TestBaseType();
var t = TestDerivedType();
assert_equal(t0.func(), 0);
assert_equal(t.func(), 1);