blob: 6ac772020459b6692390898ab82fc9286c4653d2 [file] [log] [blame]
// PR c++/60052
// { dg-do compile { target c++1y } }
// { dg-options "" }
struct A
{
void foo(auto);
};
void A::foo(auto) {}
struct B
{
void bar(auto);
};