aboutsummaryrefslogtreecommitdiff
path: root/libphobos/testsuite/libphobos.traits/all_satisfy.d
blob: 2c008ce927ecb30343857437f19d9434fd1fe8ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// https://issues.dlang.org/show_bug.cgi?id=22210

import core.internal.traits : allSatisfy;

enum isHashable(T) = __traits(compiles,
    () { T.init; }
);

class A
{
    static if (isHashable!B) {}
}

class B
{
    static if (isHashable!C) {}
}

class C
{
    static if (allSatisfy!(isHashable, int, B)) {}
}

void main() {}