blob: dc7db130dc19a4d62d21e4024cfff8958d815cd0 [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
8struct S const foo(void);
9
10struct S tmp;
11
12void priv_sock_init() {
13 tmp = (struct S)foo();
14}