Advertisement
WarPie90

Lape: ConstPointer issue

Feb 3rd, 2016
467
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.13 KB | None | 0 0
  1. const I:Int32 = 100;
  2. const constPtr_to_constInt: ^const Int32 = @I;  
  3.  
  4. begin
  5.   WriteLn(constPtr_to_constInt^ := 9); //success
  6. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement