[Issue 5604] Clarify whether this is a bug or a feature

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Feb 17 11:30:36 PST 2011


http://d.puremagic.com/issues/show_bug.cgi?id=5604


Steven Schveighoffer <schveiguy at yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |schveiguy at yahoo.com


--- Comment #2 from Steven Schveighoffer <schveiguy at yahoo.com> 2011-02-17 11:28:01 PST ---
I really expected this to be a bug.  Because I would expect this to fail:

struct S
{
   int opApply(int delegate(ref size_t idx, ref int val) dg)
   {
     return 0;
   }
}

void main()
{
   S s;
   foreach(uint idx, int val; s) {}
}

i.e. you cannot possibly duplicate this 'feature' for a custom structure.  But
then of course, you cannot duplicate the 'no ref' aspect of the index either.

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


More information about the Digitalmars-d-bugs mailing list