Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp2a
/
concepts-pr60052.C
blob: c5bc28efd07f1b7ba5524a30c965c3fbde5efebe [
file
] [
log
] [
blame
]
// PR c++/60052
// { dg-do compile { target c++14 } }
// { dg-additional-options "-fconcepts" }
struct
A
{
void
foo
(
auto
);
};
void
A
::
foo
(
auto
)
{}
struct
B
{
void
bar
(
auto
);
};