(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
fail296.d
/*
TEST_OUTPUT:
---
fail_compilation/fail296.d(10): Error: can only `*` a pointer, not a `int`
---
*/

// https://issues.dlang.org/show_bug.cgi?id=3117
// dmd crash by *1
void main(){ *1; }