[Issue 2085] CTFE fails if the function is forward referenced

2021-01-25 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2085 --- Comment #7 from Dlang Bot --- dlang/dub pull request #2098 "Fix #2085: [visuald] spurious library project" was merged into master: - d2e8c03f89c52b6b57d12449acb87e1b67cd831b by Bastiaan Veelo: If no output is generated (TargetType.none) then do

[Issue 2085] CTFE fails if the function is forward referenced

2012-05-14 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2085 Don changed: What|Removed |Added CC||shro8...@vandals.uidaho.edu --- Comment #6 from

[Issue 2085] CTFE fails if the function is forward referenced

2010-05-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2085 bearophile_h...@eml.cc changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 2085] CTFE fails if the function is forward referenced

2010-05-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2085 Walter Bright changed: What|Removed |Added CC||bugzi...@digitalmars.com --- Comment #

[Issue 2085] CTFE fails if the function is forward referenced

2010-04-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2085 --- Comment #4 from Don 2010-04-10 11:31:33 PDT --- Although bug 4075 appears similar to this one, the patch doesn't fix it. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are receiving this mail bec

[Issue 2085] CTFE fails if the function is forward referenced

2010-03-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2085 Rainer Schuetze changed: What|Removed |Added Keywords||patch CC|

[Issue 2085] CTFE fails if the function is forward referenced

2009-05-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2085 Sobirari Muhomori changed: What|Removed |Added CC||ma...@pochta.ru --- Comment #2 f

[Issue 2085] CTFE fails if the function is forward referenced

2009-04-06 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2085 --- Comment #1 from ma...@pochta.ru 2009-04-06 06:19 --- another example enum { a=b() } int b(){ return 0; } --