[Issue 5555] built-in associative array's length is not nothrow
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Wed Feb 9 09:51:09 PST 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5555
bearophile_hugs at eml.cc changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |bearophile_hugs at eml.cc
--- Comment #1 from bearophile_hugs at eml.cc 2011-02-09 09:48:44 PST ---
There is a similar problem with pure too:
int[int] aa;
nothrow int foo() {
return aa.length;
}
pure int bar() {
int[int] aa2;
return aa2.length;
}
void main() {}
--
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