Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
runnable
/
imports
/
Other.d
blob: 81d846f31c9d98e32709bdd479bee1f2c713b177 [
file
] [
log
] [
blame
]
module
imports
.
Other
;
// makes no difference if removed
import
Same
;
import
core
.
stdc
.
stdio
;
class
Other
:
Same
.
Same
{
this
()
{
printf
(
"other\n"
);
}
}
int
main
()
{
new
Other
;
return
0
;
}