[Issue 4253] opCall() not called in initialized struct

2011-06-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4253


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

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||k.hara...@gmail.com
 Resolution||DUPLICATE


--- Comment #3 from Kenji Hara k.hara...@gmail.com 2011-06-21 07:03:25 PDT ---
*** This issue has been marked as a duplicate of issue 6036 ***

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


[Issue 4253] opCall() not called in initialized struct

2011-03-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4253



--- Comment #2 from bearophile_h...@eml.cc 2011-03-08 09:53:48 PST ---
See also bug 4053

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


[Issue 4253] opCall() not called in initialized struct

2010-05-30 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=4253



--- Comment #1 from bearophile_h...@eml.cc 2010-05-30 09:29:40 PDT ---
A simpler test case:

struct Foo {
this(int x) {}
void opCall(double y) {}
}
void main() {
Foo foo = Foo(1);
foo(1.5);
}

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