PR c++/55137
[official-gcc.git] / gcc / testsuite / g++.dg / init / ctor4.C
blob1c92bb973d312d5723743a759fc5eb2703003aed
1 // PR c++/17788
2 // { dg-do compile }
4 class foo {
5 public:
6   foo();
7 };
9 class bar: public foo {         // { dg-error "reference|bar::bar" }
10 private:
11   int &a;
14 foo::foo() {
17 int main(int argc, char **argv)
19   bar x; // { dg-message "synthesized|deleted" }