blob: 9bada5b95cc13d5ef5c73927d929befd894e9745 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail221.d(11): Error: expression cast(void)0 is void and has no value
---
*/
void main()
{
void[] data;
data ~= cast(void) 0;
}