view test/compile-bench/bench-octave/cdef_ctor.m @ 32426:8e4f14837db2

maint: ensure that source files end with a single newline character
author John W. Eaton <jwe@octave.org>
date Sat, 21 Oct 2023 20:51:54 -0400
parents d69aecbef0c1
children
line wrap: on
line source

function cdef_ctor (n)
  for i = 1:n
    obj = cdef_foo ("asd", i);
  end
end

% bugg
function cdef_ctor1 (n)
  for i = 1:n
    obj = cdef_ctor1 ("asd", i);
  end
end