OSDN Git Service

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