blob: fcf8416ac41b34e0e4ee3a61a77d8cd5e95aeccc [file] [log] [blame]
var nested_template_base = require("nested_template_base");
ois = new nested_template_base.InnerS(123);
oic = new nested_template_base.InnerC();
// Check base method is available
if ((oic.outer(ois).val != 123)) {
throw new Error("Wrong value calling outer");
}
// Check non-derived class using base class
if ((oic.innerc().outer(ois).val != 123)) {
throw new Error("Wrong value calling innerc");
}