Re: [D1,__traits] D1 has __traits?

2010-10-22 Thread %u
== Quote from Jacob Carlborg (d...@me.com)'s article > On 2010-10-22 20:57, %u wrote: > > http://www.digitalmars.com/d/1.0/template.html > > .. > > assert(__traits(isRef, x[i])); > > .. > > static assert(!__traits(compiles, min(3, y) = 10)); > > > > These won't compile with my D1 :( > D1 neither ha

Re: [D1,__traits] D1 has __traits?

2010-10-22 Thread Jacob Carlborg
On 2010-10-22 20:57, %u wrote: http://www.digitalmars.com/d/1.0/template.html .. assert(__traits(isRef, x[i])); .. static assert(!__traits(compiles, min(3, y) = 10)); These won't compile with my D1 :( D1 neither has __traits or auto ref. I guess that the section was accidentally put in the D1

[D1,__traits] D1 has __traits?

2010-10-22 Thread %u
http://www.digitalmars.com/d/1.0/template.html .. assert(__traits(isRef, x[i])); .. static assert(!__traits(compiles, min(3, y) = 10)); These won't compile with my D1 :(