blob: 4e61c69334c260c865dd32b8cb3c6bf9bdda9e76 [file] [log] [blame]
// { dg-do assemble }
// GROUPS passed static-mem
struct test {
void test_member() {
static test& ds = *this; // FIX: static test* ds = this;
}
};
int main()
{
test t;
}