1 // RUN: %clang_cc1 -fsyntax-only %s -verify 2 3 struct S { 4 int one; 5 int two; 6 }; 7 8 struct S const foo(void); 9 10 11 struct S tmp; 12 13 void priv_sock_init() { 14 tmp = (struct S)foo(); 15 } 16