[Issue 8255] [CTFE] ICE when passing 'ref' literal

2021-02-19 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8255

Walter Bright  changed:

   What|Removed |Added

   See Also||https://issues.dlang.org/sh
   ||ow_bug.cgi?id=21647

--


[Issue 8255] [CTFE] ICE when passing 'ref' literal

2013-11-16 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=8255



--- Comment #4 from github-bugzi...@puremagic.com 2013-11-16 00:59:38 PST ---
Commit pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/053c0d2ab1cd239714cf1d4078e89a76b2eb6ec0
fix Issue 8255 - [CTFE] ICE when passing 'ref' literal

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


[Issue 8255] [CTFE] ICE when passing 'ref' literal

2013-11-16 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=8255


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

   What|Removed |Added

 Resolution|WORKSFORME  |FIXED


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


[Issue 8255] [CTFE] ICE when passing 'ref' literal

2013-10-07 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8255


Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bugzi...@digitalmars.com
 Resolution||WORKSFORME


--- Comment #3 from Walter Bright bugzi...@digitalmars.com 2013-10-06 
23:21:23 PDT ---
I get the following message from 2.064 head:

test.d(3): Error: function test.F!(G).F.f (ref G _param_0) is not callable
using argument types (G)
test.d(3):while evaluating pragma(msg, F().f(G()))

No ice.

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


[Issue 8255] [CTFE] ICE when passing 'ref' literal

2012-09-26 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8255


Don clugd...@yahoo.com.au changed:

   What|Removed |Added

 CC||clugd...@yahoo.com.au
 Depends on||7988


--- Comment #2 from Don clugd...@yahoo.com.au 2012-09-26 00:45:55 PDT ---
Before CTFE begins, the code in comment 1 is translated into:

F().f((G __tmpsl5 = G(); , __tmpsl5))

The problem is that the comma expression is evaluated outside of CTFE.
This would be fixed by bug 7988.

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