(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail_isZeroInit.d
/*
TEST_OUTPUT:
---
fail_compilation/fail_isZeroInit.d(11): Error: type expected as second argument of __traits `isZeroInit` instead of `a`
---
*/
void test()
{
    int a = 3;
    // Providing a specific variable rather than a type isn't allowed.
    enum bool az = __traits(isZeroInit, a);
}