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

void f(auto i) {requires {i;};}

int main() {f(0);}