Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
imports
/
test46a.d
blob: 913a08553eef21fbeb0bd525de20d7534642b53d [
file
] [
log
] [
blame
]
module
imports
.
test46a
;
private
import
imports
.
test46c
;
interface
I
{
void
anything
();
}
class
A
:
I
{
private
C
!(
char
)
c
;
this
()
{
c
=
new
C
!(
char
)
();
}
void
anything
()
{}
}