#include <stdio.h>
#include <bugreport.h>

typedef struct { int x; } sss_t;

int fff( sss_t* ctx, int a, int b);

int fn1()
{
    sss_t* sss = NULL;

    F("%s %d",
                0);
    fff(&sss,0,0);
}
