view test/nest/varg_nest2.m @ 20654:b65888ec820e draft default tip gccjit

dmalcom gcc jit import
author Stefan Mahr <dac922@gmx.de>
date Fri, 27 Feb 2015 16:59:36 +0100
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