[Issue 7307] New: Not fully enforced properties syntax

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Jan 17 16:58:24 PST 2012


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

           Summary: Not fully enforced properties syntax
           Product: D
           Version: D2
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Keywords: accepts-invalid
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: bearophile_hugs at eml.cc


--- Comment #0 from bearophile_hugs at eml.cc 2012-01-17 16:58:20 PST ---
Currently (DMD 2.058head) this code compiles with no errors if you compile it
with -property -w:


@property size_t len(T)(in T[] a) {
    return a.length;
}
void main() {
    int[10] a;
    assert(a.len() == 10);
}


But I think the -property has to statically refuse code that uses () on
properties.

-- 
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