mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
10 lines
190 B
D
10 lines
190 B
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; }
|