blob: 6672323fdd404d1be4c331bb6bdb6568ab69910d [file] [log] [blame]
#include "nolinkage1.h"
typedef struct { double d; } *BP;
void f(BP) { }
A<BP> b;
static void g()
{
struct B { };
A<B> a;
}
int dummy() { g(); f(0); return 0; }