www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 20684] New: "Error: unknown" with some bad nested

https://issues.dlang.org/show_bug.cgi?id=20684

          Issue ID: 20684
           Summary: "Error: unknown" with some bad nested struct/template
                    declarations
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Keywords: ice
          Severity: normal
          Priority: P4
         Component: dmd
          Assignee: nobody puremagic.com
          Reporter: dlang-bugzilla thecybershadow.net

/////////////// test.d ///////////////
struct RD
{
    struct BB
    {
        R!RD r;
    }

    Undeclared undeclared;

    struct VV
    {
        vector!int v;
    }

    struct VVV
    {
        vector!VV vv;
    }
}

struct R(T)
{
    static if (is(typeof(*p = *p)))
    {
    }

    T* p;
}


struct vector(T)
{
    Array!T array;
}

struct Array(T)
{
    struct Payload
    {
        T[] _payload;
    }

    ~this()
    {
        foreach (e; _data._payload) {}
    }

    Payload _data;

    this()()
    {
    }
}
//////////////////////////////////////

Compiler says:

$ dmd test.d 
Error: unknown, please file report on issues.dlang.org
test.d(17): Error: template instance test.vector!(VV) error instantiating

--
Mar 17 2020