Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
auto-fn46.C
blob: 120a4dd9e7ca2446fb2d3580c70a17cf54976e68 [
file
] [
log
] [
blame
]
// PR c++/83947
// { dg-do compile { target c++14 } }
auto
f
();
template
<
int
>
auto
g
(
f
);
// { dg-error "before deduction" }
auto
h
=
g
<
0
>
();