[Issue 14556] [REG2.067] can't instantiate struct that has constructor and static array of enum

2015-07-21 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14556

Martin Nowak c...@dawg.eu changed:

   What|Removed |Added

 CC||initrd...@gmail.com

--- Comment #6 from Martin Nowak c...@dawg.eu ---
*** Issue 14764 has been marked as a duplicate of this issue. ***

--


[Issue 14556] [REG2.067] can't instantiate struct that has constructor and static array of enum

2015-06-17 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14556

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to stable at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/3cde9f06d19ceb39efb0fcf0febd157b21e2c6b4
fix Issue 14556 - can't instantiate struct that has constructor and static
array of enum

https://github.com/D-Programming-Language/dmd/commit/920d18e560e9669e6400c5b29c7c40d78b562fdb
Merge pull request #4706 from 9rnsr/fix14556

--


[Issue 14556] [REG2.067] can't instantiate struct that has constructor and static array of enum

2015-06-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14556

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/3cde9f06d19ceb39efb0fcf0febd157b21e2c6b4
fix Issue 14556 - can't instantiate struct that has constructor and static
array of enum

https://github.com/D-Programming-Language/dmd/commit/920d18e560e9669e6400c5b29c7c40d78b562fdb
Merge pull request #4706 from 9rnsr/fix14556

[REG2.067] Issue 14556 - can't instantiate struct that has constructor and
static array of enum

--


[Issue 14556] [REG2.067] can't instantiate struct that has constructor and static array of enum

2015-06-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14556

github-bugzi...@puremagic.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--


[Issue 14556] [REG2.067] can't instantiate struct that has constructor and static array of enum

2015-06-01 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14556

Kenji Hara k.hara...@gmail.com changed:

   What|Removed |Added

   Keywords||pull
   Hardware|x86_64  |All
 OS|Linux   |All

--- Comment #3 from Kenji Hara k.hara...@gmail.com ---
https://github.com/D-Programming-Language/dmd/pull/4706

--


[Issue 14556] [REG2.067] can't instantiate struct that has constructor and static array of enum

2015-05-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14556

Vladimir Panteleev thecybersha...@gmail.com changed:

   What|Removed |Added

 CC||thecybersha...@gmail.com

--- Comment #1 from Vladimir Panteleev thecybersha...@gmail.com ---
Introduced in  https://github.com/D-Programming-Language/dmd/pull/3885

--


[Issue 14556] [REG2.067] can't instantiate struct that has constructor and static array of enum

2015-05-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14556

--- Comment #2 from ag0ae...@gmail.com ---
Same problem with static array of void:


struct OnlyResult
{
this(int) {}
void[1] data;
}

void main()
{
auto o = OnlyResult(0);
}


--