ibuclaw / gdb

Fork of GDB with D-related fixes.
GNU General Public License v2.0
16 stars 4 forks source link

ExpressionTuples can't be printed #1

Closed jcrapuchettes closed 9 years ago

jcrapuchettes commented 10 years ago

Here is an example program:

import std.typetuple;

void main()
{
    TypeTuple!(int, int) ints;
    ints[0] = 42;
}

Break on ints[0] and try to p ints.