Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
imports
/
template13478b.d
blob: 1107e6b7c0bdcb3ebd15d2a9f8b73270c804a1d3 [
file
] [
log
] [
blame
]
import
imports
.
template13478b
;
import
imports
.
template13478a
;
// Note that foo is only used in the template constraint here.
T barImpl
(
T
)(
T t
)
if
(
is
(
typeof
({
foo
!
T
();
})))
{
return
t
;
}
int
bar
(
int
a
)
{
return
barImpl
(
a
);
}