view test/bug-50716/bug-50716.tst @ 23346:957d95286f52

avoid indexing error with "end" and classdef objects (bug #50716) * pt-idx.cc (tree_index_expression::rvalue1): Avoid error with expressions like this: obj.meth(var(end)). * test/bug-50716/bug-50716.tst, test/bug-50716/myclass.m: New tests. * test/bug-50716/module.mk: New file. * test/module.mk: Update.
author John W. Eaton <jwe@octave.org>
date Wed, 05 Apr 2017 09:00:40 -0400
parents
children 194eb4bd202b
line wrap: on
line source

## Copyright (C) 2017 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <http://www.gnu.org/licenses/>.

%!test
%! obj = myclass ();
%! str = "Octave";
%! val = obj.methodA (str(1:end));
%! assert (val, str);

%!test <50716>
%! obj = myclass ();
%! foo = {obj};
%! str = "Octave";
%! val = foo{1}.methodA (str(1:end));
%! assert (val, str);

%!test <50716>
%! obj = myclass ();
%! foo = {obj};
%! str = "Octave";
%! val = foo{end}.methodA (str(1:end));
%! assert (val, str);