view test/nest/varg_nest2.m @ 31219:ad9822dedef8

maint: merge stable to default
author Rik <rik@octave.org>
date Tue, 30 Aug 2022 15:25:13 -0700
parents c68b077c8fd6
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