July 29, 2010 [Issue 4531] New: [2.046] No constructors with variable type list | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=4531 Summary: [2.046] No constructors with variable type list Product: D Version: D2 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: joshuareusch@web.de --- Comment #0 from joshuareusch@web.de 2010-07-29 08:16:07 PDT --- For example: --- class Output { this(T...)(T msg) { writeln(msg); } } new Output("Hello, ", 42); --- ends in an "Error: no constructor for Output". If you make it as an Exception: --- class MyError : Exception { this(T...)(T msg) { super(text(msg)); } } --- It ends in "Error: constructor test.MyError.this conflicts with template test.MyError.__ctor(T...)". Same with Throwable or Error as base class (probably with all others, too). I have this not tested in other configurations ... Ps: Sorry for bad english :) -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
February 09, 2012 [Issue 4531] [2.046] No constructors with variable type list | ||||
---|---|---|---|---|
| ||||
Posted in reply to joshuareusch@web.de | http://d.puremagic.com/issues/show_bug.cgi?id=4531 kennytm@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |kennytm@gmail.com Resolution| |DUPLICATE --- Comment #1 from kennytm@gmail.com 2012-02-09 14:07:28 PST --- *** This issue has been marked as a duplicate of issue 435 *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation