mirror of
https://github.com/opnsense/src.git
synced 2026-05-27 03:33:51 -04:00
20 lines
198 B
Text
20 lines
198 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;
|
|
}
|