[Issue 8356] New: Disabled postblit ignored on return statement
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Jul 7 08:55:12 PDT 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8356
Summary: Disabled postblit ignored on return statement
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Keywords: accepts-invalid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: k.hara.pg at gmail.com
--- Comment #0 from Kenji Hara <k.hara.pg at gmail.com> 2012-07-07 08:55:09 PDT ---
This code should raise compile error, but doesn't.
struct S
{
@disable this(this);
}
void main()
{
S[3] sa;
S[3] fsa() { return sa; }
}
In the return statement of function fsa should copy sa variable, but compiler
ignores the disables postblit call.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list