Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail296.d
blob: 920854f0bf0de65a9b13e0bc5740be50f7319ecc [
file
] [
log
] [
blame
]
/*
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
;
}