1 // { dg-do link }
2 // { dg-options "-std=c++17 -fconcepts" }
3 
4 // FIXME: What is this actually testing?
5 
f()6 void f() requires true { }
7 
main()8 int main() { }
9