(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test23262.d
/* https://issues.dlang.org/show_bug.cgi?id=23262
 */

struct T()
{
    string[] tags;

    this(string[] tags...)
    {
        this.tags = tags; // don't infer `return` attribute for `tags`
    }
}

void test()
{
    T!() t;
}