(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
b12001.d
void main()
{
    static assert(__traits(isSame, int, int));
    static assert(__traits(isSame, int[][], int[][]));
    static assert(__traits(isSame, bool*, bool*));

    static assert(!__traits(isSame, bool*, bool[]));
    static assert(!__traits(isSame, float, double));
}