blob: 5c64f830aa88ccd25449416120997d8b2f11cc33 [file] [log] [blame]
-- RUN: %dragonegg -S -O2 %s -o - | FileCheck %s
package body Element_Copy is
-- CHECK: @element_copy__variablesizedfieldIP
-- CHECK: store i8 105,
function F return VariableSizedField is
-- CHECK: @element_copy__f
X : VariableSizedField;
-- CHECK: store i8 105,
begin
return X;
end;
end;