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

struct S {
  int &a;
  void foo (decltype(((a = 0) || ((auto)))));  // { dg-error "expected" }
};