rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/type.C

16 lines
196 B
C

// { 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;
}