http://d.puremagic.com/issues/show_bug.cgi?id=9689
Summary: std.typecons.Proxy breaks with @disable this(this)
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: regression
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from SHOO <[email protected]> 2013-03-11 07:31:13 PDT ---
This code breaks on dmd git HEAD:
import std.typecons;
struct B(T)
{
T a;
@disable this(this);
mixin std.typecons.Proxy!a;
}
struct S
{
B!int a;
}
void main()
{
B!S b;
}
-------
This code is compilable on dmd 2.062.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------