mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
212 B
C
10 lines
212 B
C
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test22070.c(10): Error: cannot take address of expression `&""` because it is not an lvalue
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=22070
|
|
|
|
char(**s1)[3] = &(&"");
|