view test/classdef/class_bug55766.m @ 31206:7ae0a0772e9d

maint: merge stable to default
author Arun Giridhar <arungiridhar@gmail.com>
date Sun, 28 Aug 2022 12:21:36 -0400
parents b15b71bcd679
children
line wrap: on
line source

classdef class_bug55766

  properties
    testprop = 0;
  end

  properties (Access = public)
    publictestprop = 0;
  end

  properties (Access = protected)
    protectedtestprop = 0;
  end

  properties (Hidden)
    hiddentestprop = 0;
  end

  properties (Hidden = true)
    anotherhiddentestprop = 0;
  end

  properties (Hidden = false)
    notahiddentestprop = 0;
  end

end