-
Patrick Baudin authoredPatrick Baudin authored
compound-literal.res.oracle 366 B
[kernel] Parsing compound-literal.i (no preprocessing)
/* Generated by Frama-C */
struct __anonstruct_Foo_1 {
unsigned int foo ;
};
typedef struct __anonstruct_Foo_1 Foo;
extern void process(int, Foo);
void foo(int dummy)
{
int tmp;
Foo __constr_expr_0 = {.foo = (unsigned int)0};
tmp = dummy;
dummy ++;
;
process(tmp,__constr_expr_0);
return;
}