dmd/compiler/test/fail_compilation/test22070.c
2023-11-13 00:40:35 +01:00

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] = &(&"");