Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
concepts
/
abbrev3.C
blob: ba2a648156e848194b706423f11b1941973bf7c7 [
file
] [
log
] [
blame
]
// PR c++/69448
// { dg-do compile { target c++14 } }
// { dg-additional-options "-fconcepts" }
long
x
;
auto
&
f
(
auto
)
{
return
x
;
}
auto
*
g
(
auto
)
{
return
&
x
;
}
long
&
r
=
f
(
1
);
long
*
p
=
g
(
1
);