-1
개인 형 선언은 오류를 던지고있다? 내 코드는 다음과 같습니다가 오류 =>개인 유형 선언에 오류가 있습니까?
사양 파일
package rec is
type t is private;
give_public_acess:Constant t;
private
type int_array is array(1..5)of integer;
type t_type is record
max:integer:=0;
data:int_array;
end record;
give_public_acess:constant t_type:=(0,(others=>1)); --error is here adacore site says these is good but throwing error?
end rec;