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