aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/ctor10.C
blob: 91cc25012090da1deae1dca79189f58216359764 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/48606
// { dg-do compile }
// { dg-options "-fkeep-inline-functions" }

struct S
{
  int &ref;
  S() : ref() {};	// { dg-error "value-initialization of" }
};