view test/bug-58593/myclass1.m @ 31221:f5755dbacd8d

maint: merge stable to default
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Wed, 31 Aug 2022 22:04:02 +0200
parents 3719f5d452d4
children
line wrap: on
line source

classdef myclass1 < handle
  properties
    data
  end
  methods
    function obj = myclass1 ()
      obj.data = 1001:1005;
    end
  end
end