blob: 8aa7ca90dd131287ef77234d368bb594d567415d [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only %s -verify
Andy Gibbsc6e68da2012-10-19 12:44:48 +00002// expected-no-diagnostics
Anders Carlssonbc12e922009-01-13 17:00:51 +00003
4struct S {
5 int one;
6 int two;
7};
8
Chandler Carruthcb3b5a42010-07-14 06:36:18 +00009struct S const foo(void);
Douglas Gregor603d81b2010-07-13 08:18:22 +000010
Anders Carlssonbc12e922009-01-13 17:00:51 +000011
12struct S tmp;
13
14void priv_sock_init() {
15 tmp = (struct S)foo();
16}