[Issue 3072] tuples can't be aliases ( except when the aliases are templates. )

2015-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3072 Andrei Alexandrescu changed: What|Removed |Added Version|D1 & D2 |D2 --

[Issue 3072] tuples can't be aliases ( except when the aliases are templates. )

2015-02-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3072 Kenji Hara changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Issue 3072] tuples can't be aliases ( except when the aliases are templates. )

2015-02-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3072 --- Comment #3 from Kenji Hara --- (In reply to Rob Jacques from comment #1) > In general template tuples can't contain alias template parameters but it > appears that there is an exception to this rule when the parameter is itself > a template. > >

[Issue 3072] tuples can't be aliases ( except when the aliases are templates. )

2015-02-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=3072 --- Comment #2 from Kenji Hara --- With 1.076, the OP code in comment#0 compiles successfully. And with 2.067a, dmd accepts the following code. import std.stdio; template Ta(alias t){ void Tfn() { writeln(t); } } template Tt(t...) { void Tfn() {

[Issue 3072] tuples can't be aliases ( except when the aliases are templates. )

2010-10-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=3072 Rob Jacques changed: What|Removed |Added Keywords||accepts-invalid, |