blob: bec79b6581760ffe8caa87f3ec7880f5745b0150 [file] [log] [blame]
module imports.a15667;
template staticIndexOf(T)
{
enum staticIndexOf = genericIndexOf!T;
}
template genericIndexOf(args...)
{
alias e = args;
alias tuple = args;
alias tail = tuple;
enum next = genericIndexOf!(e, tail);
}
alias X = ;
static if (staticIndexOf!X)