blob: 063e8e32c02d007de75971eec0561f08b761e2d8 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -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}