Search

December 11, 2012
Issues »
...13 PST ---
By git head, the code outputs:

----
test.d(1): Error: interface test.I...
December 05, 2012
General »
...stdio;
writeln("const");
}

unittest
{
foo(A());
}

DMD outputs the following error:
C:\Users\g.gyolchanyan...
November 29, 2012
Learn »
...import std.conv;
static assert(0, "1 != " ~ text(2));

outputs
Error: static assert  ['1',' ','!','=',' ','2']
November 28, 2012
Learn »
...Foo[int] map;
  map[1] = Foo();
}

valgrind outputs:
==2562== Conditional jump or move depends on...
November 21, 2012
Learn »
...bar = new Bar;
  foo.connect(&bar.handler);
}

outputs:
Error: function signals.Foo.Signal!(int).connect...
November 19, 2012
Learn »
...of a real.  In other words it outputs

4
4
16

Instead, what I'd...
November 10, 2012
DMD »
...where you specify all valid inputs and outputs for each function (as documentation). There's...
November 09, 2012
Learn »
...func;
  dg();

  dg.ptr = cast(void*)b;
  dg();
}

outputs:
A
A

but expected:
A
B
November 07, 2012
Learn »
...this:

      auto raw = rawInput();      /* loads data and outputs a struct containing
                                     the array of data...
November 06, 2012
Announce »
...getOverloads, test, "foo"))
    {
        alias Tuple!(__traits(getAttributes, o)) attrs;
        pragma(msg, attrs.stringof);
    }
}

Compiler outputs:
()
()
95 96 97 98 99 100 101 102 103 104 105 106
Next ›   Last »