PR c++/80290
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / static-mem4.C
blob4e61c69334c260c865dd32b8cb3c6bf9bdda9e76
1 // { dg-do assemble  }
2 // GROUPS passed static-mem
3 struct test {
4   void test_member() {
5     static test& ds = *this;    // FIX: static test* ds = this;
6   }
7 };
10 int main()
12   test t;