GNAT GPL - Anonymous Access Type



I got this error message "type declaration cannot refer to itself" when
compiling the record below.

type Node is
record
Value : Integer := 0;
Next : access Node;
end record;

I have the impression that this feature has not been implemented based
on this error. What do you guys think?

AV

.