1 // { dg-do assemble  }
2 // GROUPS passed static-mem
3 struct test {
test_membertest4   void test_member() {
5     static test& ds = *this;    // FIX: static test* ds = this;
6   }
7 };
8 
9 
main()10 int main()
11 {
12   test t;
13 }
14