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

12 lines
219 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail19897.d(12): Error: cannot implicitly convert expression `a.x` of type `const(char[0])` to `const(char)`
---
*/
struct S
{
char[0] x;
}
const a = S('a');
const char c = a.x;