Sign in
gnu
/
gcc
/
a8404c07e7fca388c02c39077865f7d5fa928430
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp2a
/
concepts-requires25.C
blob: 90cbedb51d41db4b78ed4c14a6f05df384d2c9bf [
file
] [
log
] [
blame
]
// PR c++/101182
// { dg-do compile { target concepts } }
int
a
;
void
g
(
bool
);
bool
f
()
{
g
(
requires
{
a
++;
});
return
requires
{
a
++;
};
}