Files
harbour-core/harbour/tests/atest.prg
1999-10-04 18:46:41 +00:00

17 lines
176 B
Plaintext

//
// $Id$
//
// releasing arrays test
function Main()
local a := { 1 }
a[ 1 ] = a
a[ 1 ] = nil
QOut( "The array will try to be released now..." )
return nil