1 // PERMUTE_ARGS:
2 /*
3 TEST_OUTPUT
4 ---
5 fail_compilation/fail19897.d(10): Error: cannot implicitly convert expression `[]` of type `const(char[0])` to `const(char)`
6 ---
7 */
8 struct S
9 {
10     char[0] x;
11 }
12 const a = S('a');
13 const char c = a.x;
14