Untyped pointer on Island/Oxyene

  UserVehicle = public record
  public
    MT: ^UserVehicleMethodTable;
    Data: Pointer;
  end;
  PUserVehicle = ^UserVehicle;

error E28: Unknown type “Pointer”

On Island, what is the type for untyped pointers, like Delphi’s Pointer?

^Void should work.