Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
auto-fn21.C
blob: 4db1c86c8d90432abd76ce1938c249067297ab17 [
file
] [
log
] [
blame
]
// N3638: decltype(auto) must stand alone
// { dg-do compile { target c++14 } }
void
f
();
decltype
(
auto
)
g1
()
{
return
&
f
;
}
decltype
(
auto
)*
g2
()
{
return
f
;
}
// { dg-error "decltype.auto" }