dmd/compiler/test/fail_compilation/test22070.c
2022-07-09 18:53:07 +02:00

10 lines
190 B
C

/*
TEST_OUTPUT:
---
fail_compilation/test22070.c(10): Error: `&""` is not an lvalue and cannot be modified
---
*/
// https://issues.dlang.org/show_bug.cgi?id=22070
char(**s1)[3] = &(&"");