xxxxxxxxxx
auto has(A, B)(A a, B b){ return false; }
void main()
{
int a = 1, b = 2;
assert(a.has(b));
}