view test/bug-51534/parent_bug51534.m @ 23842:ff893e26aeeb

make calling parent class constructors work again (bug #51534) * pt-eval.cc (tree_evaluator::visit_index_expression): Handle calls to superclass constructors. * test/bug-51534/module.mk, test/bug-51534/bug-51534.tst, test/bug-51534/child_bug51534.m, test/bug-51534/parent_bug51534.m: New files. * test/module.mk: Update.
author Piotr Held <pjheld@gmail.com>
date Tue, 08 Aug 2017 18:18:01 -0400
parents
children
line wrap: on
line source

classdef parent_bug51534 < handle
  properties
    prop
  endproperties
  methods
    function self = parent_bug51534 (val)
      self.prop = val;
    endfunction
  endmethods
endclassdef