[Issue 1404] Link failure with template mixin and function literal

2017-10-24 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=1404 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 1404] Link failure with template mixin and function literal

2014-01-19 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1404 Marco Leise changed: What|Removed |Added CC||h3r3...@mat.uni.torun.pl --- Comment #2

[Issue 1404] Link failure with template mixin and function literal

2014-01-19 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1404 Marco Leise changed: What|Removed |Added CC||marco.le...@gmx.de --- Comment #1 from

[Issue 1404] Link failure with template mixin and function literal

2014-01-19 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1404 --- Comment #3 from Marco Leise 2014-01-18 17:44:57 PST --- The test case from Issue 2220: // --- template Foo(alias f) { void foo() { f(); } } class Bar { mixin Foo!( function { } ); } void main() {