home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
eiffel
/
smalleif.97
/
se.t
/
SmallEiffel
/
lib_test
/
bug_array2aux.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-05-02
|
338 b
|
24 lines
class TEST_ARRAY_AUX
--
-- From a bug report of Marc SCALZOLARO
--
creation {ANY}
make
feature {ANY}
tab: ARRAY[ARRAY[INTEGER]] is
once
Result := << <<1,2,3>>, <<4,5,6>> >>;
end;
tab2 : ARRAY2[INTEGER];
make is
do
!!tab2.array2 (tab);
tab2.transpose;
end;
end -- TEST_ARRAY2AUX