blob: 09e16371d3d76f4e8c113d7ac90525aac8de3a28 [file] [log] [blame]
// Build don't link:
// GROUPS passed static-mem
struct test {
void test_member() {
static test& ds = *this; // FIX: static test* ds = this;
}
};
int main()
{
test t;
}