mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
15 lines
193 B
D
15 lines
193 B
D
// COMPILE_SEPARATELY:
|
|
// EXTRA_SOURCES: imports/test8997a.d
|
|
|
|
module test8997;
|
|
|
|
import imports.test8997a;
|
|
|
|
void main()
|
|
{
|
|
auto a = new A();
|
|
|
|
foreach(key; a.foobar.byKey())
|
|
{
|
|
}
|
|
}
|