[Issue 3268] can't compare pointer to functions when one is const

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3268 Andrei Alexandrescu and...@erdani.com changed: What|Removed |Added Version|2.018 |D2 --

[Issue 3268] can't compare pointer to functions when one is const

2011-09-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3268 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 3268] can't compare pointer to functions when one is const

2011-06-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3268 --- Comment #3 from yebblies yebbl...@gmail.com 2011-06-08 04:41:23 PDT --- Better fix: https://github.com/D-Programming-Language/dmd/pull/96 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email --- You are

[Issue 3268] can't compare pointer to functions when one is const

2009-08-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3268 --- Comment #1 from Andrei Alexandrescu and...@metalanguage.com 2009-08-27 14:11:13 PDT --- void fun() {} void main() { auto a = fun; const b = a; assert(a == b); } This fails to compile. The error message is odd too: Error: