blob: 7e0b9114deea57376d08875cc85e2d63b55a04b1 [file] [log] [blame]
/* TEST_OUTPUT:
---
fail_compilation/fail17722a.d(12): Error: static assert: `__traits(compiles, a1 && a2)` is false
---
*/
// https://issues.dlang.org/show_bug.cgi?id=17722
void fail17722a()
{
byte[16] a1, a2;
static assert(__traits(compiles, a1 && a2)); // diagnostic was (__error) && (__error)
}