blob: 7c994e6f0eb95e28b5791ef24ff484a07c04948c [file] [log] [blame]
module imports.art4769a;
import core.stdc.stdio;
template DataStreamability(T)
{
const int isStreamable = true;
alias T footype;
void write()
{
printf("hallo\n");
}
}