view test/nest/varg_nest2.m @ 20622:128414587af2

don't print additional error message in argument list evaluation * pt-arg-list.cc (tree_argument_list::convert_to_const_vector): Don't call error for for failed argument evaluation.
author John W. Eaton <jwe@octave.org>
date Fri, 09 Oct 2015 16:52:49 -0400
parents 8e2906e2fb26
children
line wrap: on
line source

function x = varg_nest2
  [a, b] = f;
  x = a;

  if nargout == 1
    x = a;
  endif

  function [a, b] = f
    if nargout == 2
      a = b = 5;
    endif
  endfunction
endfunction