Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
imports
/
test45a.d
blob: 30d43df4f9814bb59ba2d99d2f5f98f74c6f4bce [
file
] [
log
] [
blame
]
module
imports
.
test45a
;
import
core
.
stdc
.
stdio
;
int
foo
()
{
printf
(
"foo()\n"
);
return
1
;
}
int
bar
(
T
)(
T t
)
{
printf
(
"bar(t)\n"
);
return
3
;
}