view test/classdef/class_bug52614A.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 64461ccf3039
children
line wrap: on
line source

classdef class_bug52614A < handle
  properties
    a
  end

  methods
    function obj = class_bug52614A ()
      obj.foo ();
    end

    function foo (obj)
      obj.a = 1;
    end
  end
end