view test/nest/scope3.m @ 20354:227d582fa300 stable

build: Sort generated PKG_ADD contents consistently * libinterp/mk-pkg-add: Set LC_COLLATE=C when sorting for consistent output.
author Mike Miller <mtmiller@octave.org>
date Fri, 10 Jul 2015 01:10:30 -0400
parents be18c9e359bf
children
line wrap: on
line source

# scope3.m
function scope3
  C;
  function A
    B;
    function B
      E;
    endfunction
    function E
    endfunction
  endfunction

  function C
    D;
    function D
      A;
    endfunction
  endfunction
endfunction