mirror of
https://github.com/opnsense/src.git
synced 2026-05-26 19:23:04 -04:00
22 lines
199 B
Text
22 lines
199 B
Text
|
|
int f(struct x *a);
|
|
|
|
/* See r303485 */
|
|
void
|
|
t(void)
|
|
{
|
|
static const struct {
|
|
int a;
|
|
int b;
|
|
} c[] = {
|
|
{D, E},
|
|
{F, G}
|
|
};
|
|
}
|
|
|
|
void
|
|
u(struct x a)
|
|
{
|
|
int b;
|
|
struct y c = (struct y *)&a;
|
|
}
|