https://d.puremagic.com/issues/show_bug.cgi?id=9807
yebblies <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Resolution|DUPLICATE |FIXED --- Comment #2 from yebblies <[email protected]> 2013-11-22 22:32:31 EST --- This was not a dupe of issue 6711, it asks for properties of built-in types to be accessible via with. eg this doesn't work void main() { int[int] aa; with(aa) { } } Making this work for AAs is questionable, as this doesn't work: void main() { struct S { int[] a; alias a this; } S x; with(x) { length; } } -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
