Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail221.d
blob: 14c3e7bf801c2c1d387bb7c8fbc6eaedc25ff401 [
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
;
}