xxxxxxxxxx
void main() @nogc {
import std.algorithm: count;
import std.range: only;
int[] a;
auto r = a.count(only(0, 1));
}