'typeof' question

Adam D Ruppe destructionator at gmail.com
Tue Nov 28 18:43:37 UTC 2023


On Tuesday, 28 November 2023 at 18:41:49 UTC, DLearner wrote:
> A* A_Ptr;
>
> struct B {
>    int BFld2;
>    typeof(A_Ptr)[0..($-1)] ASUB; // Idea is ASUB of type A, 
> from A_Ptr of type A*.


I think what you really want is

typeof(*A_Ptr) ASUB;


the typeof thing returns the type you'd get from the code inside


More information about the Digitalmars-d-learn mailing list