October 02, 2013 [Issue 11156] New: Refuse wrongly sized array assigned in C-style struct literal | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=11156 Summary: Refuse wrongly sized array assigned in C-style struct literal Product: D Version: D2 Platform: All OS/Version: All Status: NEW Keywords: accepts-invalid Severity: normal Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: bearophile_hugs@eml.cc --- Comment #0 from bearophile_hugs@eml.cc 2013-10-01 18:35:05 PDT --- struct Foo { int[3] a; } void main() { Foo f1 = {[10, 20]}; // No error. Foo f2 = Foo([10, 20]); // Line 6, Error. } DMD 2.064 alpha gives: temp.d(6): Error: cannot implicitly convert expression ([10, 20]) of type int[] to int[3] I think D should accept both or refuse both. Probably it should refuse both. See also issue 481 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
October 02, 2013 [Issue 11156] Refuse wrongly sized array assigned in C-style struct literal | ||||
---|---|---|---|---|
| ||||
Posted in reply to bearophile_hugs@eml.cc | http://d.puremagic.com/issues/show_bug.cgi?id=11156 Andrej Mitrovic <andrej.mitrovich@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrej.mitrovich@gmail.com --- Comment #1 from Andrej Mitrovic <andrej.mitrovich@gmail.com> 2013-10-01 18:39:20 PDT --- Also similar to Issue 3849. -- 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