Thread overview
[Issue 16166] struct constructor and AliasSeq
Jun 12, 2016
Danila Letunovskiy
Jun 16, 2016
Danila Letunovskiy
Dec 17, 2022
Iain Buclaw
June 12, 2016
https://issues.dlang.org/show_bug.cgi?id=16166

--- Comment #1 from Danila Letunovskiy <kapblc@mail.ru> ---
this(T...)(T t){ this.tupleof[0..t.length] = t; }

I want that this work by default.

--
June 16, 2016
https://issues.dlang.org/show_bug.cgi?id=16166

--- Comment #2 from Danila Letunovskiy <kapblc@mail.ru> ---
struct Window {
    string title;
    int x, y;
    int w, h;
    alias title this;
}

void main(){
    Window w = "Foo";
}

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=16166

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P4

--
December 13
https://issues.dlang.org/show_bug.cgi?id=16166

--- Comment #3 from dlangBugzillaToGithub <robert.schadek@posteo.de> ---
THIS ISSUE HAS BEEN MOVED TO GITHUB

https://github.com/dlang/dmd/issues/17761

DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB

--