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