(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
consteval19.C
// PR c++/99507
// { dg-do compile { target c++20 } }

constexpr int i{0};
consteval const int &iref () { return i; }
const int *a{&iref ()};