http://d.puremagic.com/issues/show_bug.cgi?id=8703

           Summary: Disabling default ctor does not forbid default
                    construction
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: accepts-invalid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: k.hara...@gmail.com


--- Comment #0 from Kenji Hara <k.hara...@gmail.com> 2012-09-21 05:49:56 PDT ---
This code should fail to compile, but doesn't.

struct S
{
    @disable this();
}
void main()
{
    auto s = S();
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to