Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
a17.d
blob: 21f4f38e46d374cc11e1c7a6a665c4cc738a7c3a [
file
] [
log
] [
blame
]
/*
EXTRA_SOURCES: imports/a17a.d
RUN_OUTPUT:
---
barx
---
*/
module
a17
;
import
core
.
stdc
.
stdio
;
private
import
imports
.
a17a
;
class
barx
{
this
()
{
printf
(
"barx\n"
);
}
}
int
main
()
{
foo2x f
=
new
foo2x
();
// f = new foo2x();
// f.x++;
return
0
;
}