Search

November 25, 2009
General »
...statements.  What if adding to a.length outputs it's argument?  Then the optimizer would...
November 25, 2009
Issues »
...d", arr[0].x);
}

This compiles and outputs 5.

I believe dup should statically fail...
November 24, 2009
General »
...is one that has no inputs or outputs.

In my mind it is not buggy...
November 21, 2009
Issues »
...Foo!double B;
alias Foo!int A;

outputs

Boo!(double) Boo!(double)

while it should...
November 20, 2009
General »
...brainfuck using operators!

auto bf = new BrainFuck();
bf++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.;
writef(bf.toString()); // outputs "Hello World!\n"
November 16, 2009
Issues »
...s)
    {
        writeln("inside loop %d", i);
    }
}

Currently outputs nothing, it should output:
inside opapply
inside...
November 15, 2009
Learn »
...b);
    b.foo(b);
    a.foo(b);
}
--------------
outputs:
B
A


This is understandable as B...
November 13, 2009
General »
...escape analysis has N inputs and M outputs.  Annotation is going to be very hard...
November 13, 2009
Learn »
...not:

------------------------------
void foo(){}
pragma(msg, foo.stringof);
------------------------------

Outputs "foo()", but shouldn't it just be...
November 12, 2009
Issues »
...is "A::x()", but with -inline, it outputs "B::x()".
Conclusion: the dmd inliner must...
137 138 139 140 141 142 143 144 145 146 147
Next ›   Last »