blob: a352984742f88faa087a34ff3eeef807a1a3779a [file] [log] [blame]
/*
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);
}