Ivan Kuvshinov
2006-05-11 13:15:32 UTC
Вот на такое:
type
TstTyp = array[0..1] of Word;
const
source : String = '123';
var
dest : TstTyp := TstTyp(source);
end.
Ругается вот так:
dest : TstTyp := TstTyp(source);
↑
Warning: TEST01.PAS (line 6, col 20): source & dest.types in typecast must
have
same size
Что он хочет этим сказать?
type
TstTyp = array[0..1] of Word;
const
source : String = '123';
var
dest : TstTyp := TstTyp(source);
end.
Ругается вот так:
dest : TstTyp := TstTyp(source);
↑
Warning: TEST01.PAS (line 6, col 20): source & dest.types in typecast must
have
same size
Что он хочет этим сказать?