view test/bug-58593/myclass1.m @ 31161:6f4c8063b4c2 stable

GitHub-CI: Remove macos-10.15 runners from build matrix. * .github/workflow/make.yaml (macos): GitHub-hosted runners for macos-10.15 are being deprecated. Remove them from build matrix. See also: https://github.com/actions/virtual-environments/issues/5583
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 27 Jul 2022 18:30:15 +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