http://d.puremagic.com/issues/show_bug.cgi?id=9980
--- Comment #1 from Denis Shelomovskij <[email protected]> 2013-04-23 13:59:21 MSD --- E.g. this will allow such `isLvalue` library implementation: --- bool isLvalue(T)(auto ref T t) { return __traits(isRef, t); } void main() { int i; static assert( isLvalue(i)); static assert(!isLvalue(i + 1)); } --- -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
