blob: f500af3f616405ac311a4d63d01a9b74d753c98e [file] [log] [blame]
// PR c++/105304
// { dg-do compile { target c++20 } }
// { dg-additional-options "-Wall -Wsequence-point" }
struct A { };
int main() {
if (requires { A(); })
;
}