blob: 3c36c47ad7ad4f6ed738b3c5b29bc27452fd9e8b [file] [log] [blame]
// { dg-do assemble }
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;
}