mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
19 lines
252 B
D
19 lines
252 B
D
// EXTRA_SOURCES: imports/link2500a.d
|
|
// EXTRA_SOURCES: imports/link2500b.d
|
|
// COMPILE_SEPARATELY:
|
|
|
|
module link2500;
|
|
|
|
import imports.link2500a;
|
|
import imports.link2500b;
|
|
|
|
public class A
|
|
{
|
|
S!A c;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
A a = new A();
|
|
a.c.foo();
|
|
}
|