(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
constexpr-return3.C
// PR c++/81942
// { dg-do compile { target c++14 } }

class A {
public:
    constexpr A() {
      return;
    }
};

A mwi;