OSDN Git Service

PR c++/47277
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / init / ctor10.C
1 // PR c++/48606
2 // { dg-do compile }
3 // { dg-options "-fkeep-inline-functions" }
4
5 struct S
6 {
7   int &ref;
8   S() : ref() {};       // { dg-error "value-initialization of" }
9 };