Comment #0 by bearophile_hugs — 2014-12-29T12:42:00Z
Printing such tuple such be safe:
void main() @safe {
import std.stdio, std.typecons;
Tuple!(uint, uint) p;
write(p);
}
dmd 2.067alpha gives:
temp.d(4,10): Error: safe function 'D main' cannot call system function 'std.stdio.write!(Tuple!(uint, uint)).write'
Comment #1 by john.loughran.colvin — 2015-03-05T13:44:35Z