blob: 734be804e6e5b3b1f275bca2747f41678ca64cc1 [file] [log] [blame]
Anders Carlsson53859912009-01-13 17:00:51 +00001// RUN: clang -fsyntax-only %s -verify
2
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}