blob: df775858ca4921f6681d2f0aff7fc571218a8023 [file] [log] [blame]
module imports.diag10141a;
import imports.diag10141b;
string format()
{
auto w = Appender!string();
char[] digits = ['0'];
put(w, digits);
return null;
}
template Tuple(Specs...)
{
struct Tuple
{
Specs expand;
enum x = format(); // in injectNameFields()
}
}
private template Identity(alias T)
{
alias T Identity;
}