Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
modules
/
concept-5.h
blob: 1b049f5f1be25bea74bfdf982ce29a995bb415f6 [
file
] [
log
] [
blame
]
template
<
typename
T
>
requires
(
sizeof
(
T
)
==
1
)
constexpr
int
f1
(
T x
)
{
return
1
;
}
template
<
typename
T
>
requires
(
sizeof
(
T
)
!=
1
)
constexpr
int
f1
(
T x
)
{
return
0
;
}