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

template <class T>
struct A {
  void f() requires (this, true) { }
};

template struct A<int>;