[Issue 6966] cannot create qualified type from tuple entry

2016-08-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=6966

ag0ae...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||ag0ae...@gmail.com
 Resolution|--- |FIXED

--- Comment #3 from ag0ae...@gmail.com ---
The pull request has been merged and the test case passes since 2.061. Closing
as FIXED.

--


[Issue 6966] cannot create qualified type from tuple entry

2012-07-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6966


Kenji Hara  changed:

   What|Removed |Added

   Keywords||pull, wrong-code
   Platform|Other   |All
 OS/Version|Linux   |All


--- Comment #2 from Kenji Hara  2012-07-19 06:10:48 PDT ---
https://github.com/D-Programming-Language/dmd/pull/1055

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---


[Issue 6966] cannot create qualified type from tuple entry

2011-11-17 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6966



--- Comment #1 from timon.g...@gmx.ch 2011-11-17 07:30:25 PST ---
Workaround:

template XImpl(T...){
alias T[0] _;
alias const(_) X;
}
template X(T...){alias XImpl!T.X X;}

static assert(is(X!(int) == const(int))); // pass

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
--- You are receiving this mail because: ---