[Issue 15065] associative array has no keys property

2015-09-27 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15065

Kenji Hara  changed:

   What|Removed |Added

   Keywords||pull, rejects-valid
   Hardware|x86_64  |All
 OS|Linux   |All
   Severity|enhancement |normal

--- Comment #2 from Kenji Hara  ---
https://github.com/D-Programming-Language/dmd/pull/5123

--


[Issue 15065] associative array has no keys property

2015-09-27 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15065

--- Comment #3 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/082ba6b5da6932bb10ab9e43f8e4acae742878d4
fix Issue 15065 - associative array has no keys property

https://github.com/D-Programming-Language/dmd/commit/7a7687e6e5b46ab9629bcdddb3061478c504ae49
Merge pull request #5123 from 9rnsr/fix15065

Issue 15065 - associative array has no keys property

--


[Issue 15065] associative array has no keys property

2015-09-27 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15065

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

   What|Removed |Added

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

--


[Issue 15065] associative array has no keys property

2015-09-15 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=15065

--- Comment #1 from Kenji Hara  ---
Reduced test case:

template partial(alias arg) {}

struct X(int[int] x)
{
alias w = partial!(x.keys);
}

X!([1:2]) zzz;

--