d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice14055.d
blob13cdf34473f299a9f8c9b4846eebe18501587c8c
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice14055.d(16): Error: uninitialized variable `foo` cannot be returned from CTFE
5 ---
6 */
8 struct S
10 static returnsFoo()
12 uint[1] foo = void;
13 return foo;
16 static enum fooEnum = returnsFoo();
17 static uint[1] fooArray = fooEnum[];