(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
expr/
crash2.C
// PR c++/14267
 
class foo {
public: static int& x;
};
int temp;
int& foo::x=temp;

int main() {
  int x = 3;
  &foo::x = x; // { dg-error "3:lvalue required" }
  return 0;
}