[Issue 9711] extend IFTI to deduce static array length

2013-03-13 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9711


timon.g...@gmx.ch changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE


--- Comment #2 from timon.g...@gmx.ch 2013-03-13 15:25:17 PDT ---
[1,2,3] is supposed to be a polysemous array literal. I mis-guessed the cause
of this, merging into issue 9712.

*** This issue has been marked as a duplicate of issue 9712 ***

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


[Issue 9711] extend IFTI to deduce static array length

2013-03-13 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=9711


Zhenya Chapovsky  changed:

   What|Removed |Added

 CC||zh...@list.ru


--- Comment #1 from Zhenya Chapovsky  2013-03-13 15:16:45 PDT ---
[1,2,3] seems is dynamic allocated array,so typeof([1,2,3]) == int[]

but

auto deduceLength(T,size_t n)(T[n] a){ return a; }
enum int[3] a = [1,2,3];
static assert(is(typeof(deduceLength(a))==int[3])); // pass

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