Newer
Older
dub_jkp / test / issue2377-dynLib-dep-extra-files / parent / source / app.d
@Martin Kinkelin Martin Kinkelin on 17 Sep 2022 258 bytes [add tests]
module app;

// Add a dummy export to enforce creation of import .lib and .exp file for the (Windows) executable.
// They shouldn't be copied to the output dir though.
export void dummy() {}

void main() {
    import parent;
    parent_bar();
    dummy();
}