mirror of
https://github.com/dlang/dmd.git
synced 2025-04-29 14:40:12 +03:00
10 lines
190 B
C
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] = &(&"");
|