(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
concepts-pr58536.C
// PR c++/58536
// { dg-do compile { target c++14 } }
// { dg-additional-options "-fconcepts" }

struct A
{
  A(auto);
};

A::A(auto) {}