blob: a7dcde119e4f8058af2d27d90ca2be24c5073788 [file] [log] [blame]
// Build don't link:
typedef unsigned short ushort;
class foo {
public:
static ushort a;
};
extern "C" {
typedef unsigned short ushort;
}
ushort foo::a;
static int baz()
{
return foo::a;
}