1 // PR c++/58207
2 // { dg-do compile { target c++11 } }
3 
4 struct A
5 {
6   virtual bool foo ();
7 };
8 
9 struct B : public A
10 {
BB11   constexpr B () : A (&::n) {}  // { dg-error "declared" }
12 };
13