Blitz logo

Blitz Support :

From: Kirill Titievsky (kiroosha_at_[hidden])
Date: 2005-06-15 09:26:40


Folks, this bit of code:

Array<int,1> * pA;
Array<int,1> A;

pA = new Array<int,1>(10);
A = *pA;

The result is: &A != pA and I can not access the array with a
reference! Any ideas why this would be tru?

Many thanks

Kirill