blob: 30ef89242afcc2fcd6f6f222bc1810bf7f9ee0ea [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only %s -verify
Anders Carlsson53859912009-01-13 17:00:51 +00002
3struct S {
4 int one;
5 int two;
6};
7
Chandler Carruth5495f372010-07-14 06:36:18 +00008struct S const foo(void);
Douglas Gregor5291c3c2010-07-13 08:18:22 +00009
Anders Carlsson53859912009-01-13 17:00:51 +000010
11struct S tmp;
12
13void priv_sock_init() {
14 tmp = (struct S)foo();
15}