mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
The function is sometimes used as a look-ahead, so ideally it should bear no information about parser state.
21 lines
214 B
Text
21 lines
214 B
Text
/* $FreeBSD$ */
|
|
|
|
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;
|
|
}
|