mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
14 lines
173 B
C
14 lines
173 B
C
// RUN: %clang_cc1 -fsyntax-only %s -verify
|
|
|
|
struct S {
|
|
int one;
|
|
int two;
|
|
};
|
|
|
|
struct S const foo(void);
|
|
|
|
struct S tmp;
|
|
|
|
void priv_sock_init() {
|
|
tmp = (struct S)foo();
|
|
}
|