brintos

brintos / llvm-project-archived public Read only

0
0
Text · 198 B · 386aeb2 Raw
15 lines · c
1// RUN: %clang_cc1 -emit-llvm < %s -o -2// PR24193 4struct Mem {5        union {6        } u;7};8 9struct Mem *columnMem(void){10        static const struct Mem nullMem = { {} };11        return 0;12}13 14 15