brintos

brintos / llvm-project-archived public Read only

0
0
Text · 234 B · 3464fde Raw
18 lines · c
1// RUN: %clang_cc1 -emit-llvm %s -o -2// PR42813 4typedef struct {5        int i;6} something;7 8typedef const something const_something;9 10something fail(void);11 12int13main(int argc, char *argv[])14{15        const_something R = fail();16}17 18