[Issue 5223] [qtd] Cannot use default value with function parameter of struct type

2015-03-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=5223 Kenji Hara k.hara...@gmail.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 5223] [qtd] Cannot use default value with function parameter of struct type

2013-02-10 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5223 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added Platform|Other |All

[Issue 5223] [qtd] Cannot use default value with function parameter of struct type

2012-12-18 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5223 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added CC|

[Issue 5223] [qtd] Cannot use default value with function parameter of struct type

2010-11-16 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=5223 --- Comment #1 from Max Samukha samu...@voliacable.com 2010-11-16 09:48:10 PST --- Even simpler test-case: struct S { this(int x) { } void foo(S s = S(42)) { } } void main() { S s; s.foo(); // error } Error: