blob: 3464fde685447c75da6a0af0d84c77d7b5175e1b [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm %s -o -
// PR4281
typedef struct {
int i;
} something;
typedef const something const_something;
something fail(void);
int
main(int argc, char *argv[])
{
const_something R = fail();
}