Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
g++.dg
/
init
/
ctor10.C
blob: 91cc25012090da1deae1dca79189f58216359764 [
file
] [
log
] [
blame
]
// PR c++/48606
// { dg-do compile }
// { dg-options "-fkeep-inline-functions" }
struct
S
{
int
&
ref
;
S
()
:
ref
()
{};
// { dg-error "value-initialization of" }
};