Thread overview |
---|
July 01, 2013 [Issue 10521] New: Struct wrong constructor chosen. | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=10521 Summary: Struct wrong constructor chosen. Product: D Version: D1 & D2 Platform: All OS/Version: All Status: NEW Severity: regression Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: damianday@hotmail.co.uk --- Comment #0 from Damian <damianday@hotmail.co.uk> 2013-07-01 09:44:59 PDT --- // Test case, worked fine in 2.062 struct Test { enum DefaultSize = 256; int size; this(int sz = DefaultSize ) { size = sz; } } void main() { Test st_test; assert(st_test.size == Test.DefaultSize); // Wrong constructor chosen! } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
July 01, 2013 [Issue 10521] Struct wrong constructor chosen. | ||||
---|---|---|---|---|
| ||||
Posted in reply to Damian | http://d.puremagic.com/issues/show_bug.cgi?id=10521 Damian <damianday@hotmail.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
July 01, 2013 [Issue 10521] Struct wrong constructor chosen. | ||||
---|---|---|---|---|
| ||||
Posted in reply to Damian | http://d.puremagic.com/issues/show_bug.cgi?id=10521 --- Comment #1 from Damian <damianday@hotmail.co.uk> 2013-07-01 10:16:46 PDT --- This is a correct test case, ignore the previous one. Anyway tested now with Git Head and the issue has been resolved! Hooray :) struct Test { enum DefaultSize = 256; int size; this(int sz = DefaultSize ) { size = sz; } ~this() { assert(size == DefaultSize); } } public class ClassA { private Test st_test; public this() { st_test = Test(256); } } void main() { auto cl = new ClassA; } -- 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