blob: d9ffd0f7175f0f2227674d23ce6aba9fd7671130 [file] [log] [blame]
typedef int T, *P;
static void f(void)
{
unsigned P = 0;
unsigned x = P;
}
static void g(void)
{
int P = 0;
int x = P;
}
/*
* check-name: typedefs with many declarators
* check-description: we didn't recognize P above as a typedef
*/